@azure/keyvault-admin 4.2.0-alpha.20220105.2 → 4.2.0-alpha.20220131.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +66 -44
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@azure/keyvault-admin",
|
|
3
3
|
"sdk-type": "client",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
|
-
"version": "4.2.0-alpha.
|
|
5
|
+
"version": "4.2.0-alpha.20220131.3",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"description": "Isomorphic client library for Azure KeyVault's administrative functions.",
|
|
8
8
|
"homepage": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/keyvault/keyvault-admin/README.md",
|
|
@@ -44,11 +44,12 @@
|
|
|
44
44
|
"scripts": {
|
|
45
45
|
"audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
|
|
46
46
|
"build:samples": "echo Obsolete.",
|
|
47
|
-
"build:node": "tsc -p . &&
|
|
48
|
-
"build:browser": "tsc -p . &&
|
|
49
|
-
"build:nodebrowser": "
|
|
50
|
-
"build:test": "tsc -p . &&
|
|
47
|
+
"build:node": "tsc -p . && npm run bundle",
|
|
48
|
+
"build:browser": "tsc -p . && npm run bundle",
|
|
49
|
+
"build:nodebrowser": "npm run bundle",
|
|
50
|
+
"build:test": "tsc -p . && npm run bundle",
|
|
51
51
|
"build": "npm run clean && tsc -p . && npm run build:nodebrowser && api-extractor run --local",
|
|
52
|
+
"bundle": "dev-tool run bundle --polyfill-node=false",
|
|
52
53
|
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
53
54
|
"clean": "rimraf dist dist-* types *.tgz *.log statistics.html coverage && rimraf src/**/*.js && rimraf test/**/*.js",
|
|
54
55
|
"execute:samples": "dev-tool samples run samples-dev",
|
|
@@ -140,7 +141,6 @@
|
|
|
140
141
|
"nyc": "^15.0.0",
|
|
141
142
|
"prettier": "^2.5.1",
|
|
142
143
|
"rimraf": "^3.0.0",
|
|
143
|
-
"rollup": "^1.16.3",
|
|
144
144
|
"sinon": "^9.0.2",
|
|
145
145
|
"source-map-support": "^0.5.9",
|
|
146
146
|
"typescript": "~4.2.0"
|