@azure/keyvault-admin 4.2.0-alpha.20220105.2 → 4.2.0-alpha.20220302.2
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/README.md +3 -0
- package/dist/index.js +66 -44
- package/dist/index.js.map +1 -1
- package/package.json +6 -10
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.20220302.2",
|
|
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",
|
|
@@ -124,13 +125,9 @@
|
|
|
124
125
|
"@azure/test-utils": ">=1.0.0-alpha <1.0.0-alphb",
|
|
125
126
|
"@azure-tools/test-recorder": "^1.0.0",
|
|
126
127
|
"@microsoft/api-extractor": "^7.18.11",
|
|
127
|
-
"@types/chai": "^4.1.6",
|
|
128
|
-
"@types/chai-as-promised": "^7.1.0",
|
|
129
128
|
"@types/mocha": "^7.0.2",
|
|
130
129
|
"@types/node": "^12.0.0",
|
|
131
130
|
"@types/sinon": "^9.0.4",
|
|
132
|
-
"chai": "^4.2.0",
|
|
133
|
-
"chai-as-promised": "^7.1.1",
|
|
134
131
|
"cross-env": "^7.0.2",
|
|
135
132
|
"dotenv": "^8.2.0",
|
|
136
133
|
"eslint": "^7.15.0",
|
|
@@ -140,7 +137,6 @@
|
|
|
140
137
|
"nyc": "^15.0.0",
|
|
141
138
|
"prettier": "^2.5.1",
|
|
142
139
|
"rimraf": "^3.0.0",
|
|
143
|
-
"rollup": "^1.16.3",
|
|
144
140
|
"sinon": "^9.0.2",
|
|
145
141
|
"source-map-support": "^0.5.9",
|
|
146
142
|
"typescript": "~4.2.0"
|