@azure/storage-blob 12.25.0-alpha.20240925.3 → 12.25.0-alpha.20240927.1
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +15 -14
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@azure/storage-blob",
|
3
3
|
"sdk-type": "client",
|
4
|
-
"version": "12.25.0-alpha.
|
4
|
+
"version": "12.25.0-alpha.20240927.1",
|
5
5
|
"description": "Microsoft Azure Storage SDK for JavaScript - Blob",
|
6
6
|
"main": "./dist/index.js",
|
7
7
|
"module": "./dist-esm/storage-blob/src/index.js",
|
@@ -31,31 +31,32 @@
|
|
31
31
|
},
|
32
32
|
"scripts": {
|
33
33
|
"audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
|
34
|
+
"build": "npm run clean && tsc -p . && dev-tool run bundle && dev-tool run extract-api",
|
34
35
|
"build:browser": "tsc -p . && dev-tool run bundle",
|
35
36
|
"build:node": "tsc -p . && dev-tool run bundle",
|
36
|
-
"build:test": "tsc -p . && dev-tool run bundle",
|
37
|
-
"build": "npm run clean && tsc -p . && dev-tool run bundle && dev-tool run extract-api",
|
38
37
|
"build:samples": "echo Obsolete;",
|
38
|
+
"build:test": "tsc -p . && dev-tool run bundle",
|
39
39
|
"check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
40
40
|
"clean": "rimraf --glob dist dist-* types temp statistics.html coverage coverage-browser .nyc_output *.tgz *.log test*.xml TEST*.xml",
|
41
41
|
"clean:samples": "rimraf samples/v12/javascript/node_modules samples/v12/typescript/node_modules samples/v12/typescript/dist samples/v12/typescript/package-lock.json samples/v12/javascript/package-lock.json",
|
42
|
-
"
|
42
|
+
"emulator-tests": "cross-env STORAGE_CONNECTION_STRING=UseDevelopmentStorage=true && npm run test:node",
|
43
43
|
"execute:samples": "dev-tool samples run samples-dev",
|
44
|
+
"extract-api": "tsc -p . && dev-tool run extract-api",
|
44
45
|
"format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
46
|
+
"generate:client": "autorest --typescript ./swagger/README.md",
|
47
|
+
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
|
45
48
|
"integration-test:browser": "dev-tool run test:browser",
|
46
49
|
"integration-test:node": "dev-tool run test:node-js-input -- --timeout 5000000 'dist-esm/storage-blob/test/*.spec.js' 'dist-esm/storage-blob/test/node/*.spec.js'",
|
47
|
-
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
|
48
|
-
"generate:client": "autorest --typescript ./swagger/README.md",
|
49
|
-
"lint:fix": "eslint package.json api-extractor.json README.md src test --fix",
|
50
50
|
"lint": "eslint package.json api-extractor.json README.md src test",
|
51
|
+
"lint:fix": "eslint package.json api-extractor.json README.md src test --fix",
|
51
52
|
"pack": "npm pack 2>&1",
|
53
|
+
"test": "npm run clean && npm run build:test && npm run unit-test",
|
52
54
|
"test:browser": "npm run clean && npm run build:test && npm run unit-test:browser",
|
53
55
|
"test:node": "npm run clean && npm run build:test && npm run unit-test:node",
|
54
|
-
"test": "npm run
|
56
|
+
"unit-test": "npm run unit-test:node && npm run unit-test:browser",
|
55
57
|
"unit-test:browser": "dev-tool run test:browser",
|
56
58
|
"unit-test:node": "dev-tool run test:node-ts-input -- --timeout 1200000 --exclude 'test/**/browser/*.spec.ts' 'test/**/*.spec.ts'",
|
57
|
-
"
|
58
|
-
"emulator-tests": "cross-env STORAGE_CONNECTION_STRING=UseDevelopmentStorage=true && npm run test:node"
|
59
|
+
"update-snippets": "echo skipped"
|
59
60
|
},
|
60
61
|
"files": [
|
61
62
|
"BreakingChanges.md",
|
@@ -139,13 +140,13 @@
|
|
139
140
|
"tslib": "^2.2.0"
|
140
141
|
},
|
141
142
|
"devDependencies": {
|
143
|
+
"@azure-tools/test-credential": "^1.0.0",
|
144
|
+
"@azure-tools/test-perf": "^1.0.0",
|
145
|
+
"@azure-tools/test-recorder": "^3.0.0",
|
146
|
+
"@azure-tools/test-utils": "^1.0.1",
|
142
147
|
"@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
|
143
148
|
"@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
|
144
149
|
"@azure/identity": "^4.0.1",
|
145
|
-
"@azure-tools/test-utils": "^1.0.1",
|
146
|
-
"@azure-tools/test-credential": "^1.0.0",
|
147
|
-
"@azure-tools/test-recorder": "^3.0.0",
|
148
|
-
"@azure-tools/test-perf": "^1.0.0",
|
149
150
|
"@microsoft/api-extractor": "^7.31.1",
|
150
151
|
"@types/chai": "^4.1.6",
|
151
152
|
"@types/mocha": "^10.0.0",
|