@azure/storage-blob 12.10.1-alpha.20220520.1 → 12.10.1-alpha.20220524.1
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 +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
@@ -511,7 +511,7 @@ A complete example of simple scenarios is at [samples/v12/typescript/src/sharedK
|
|
511
511
|
Enabling logging may help uncover useful information about failures. In order to see a log of HTTP requests and responses, set the `AZURE_LOG_LEVEL` environment variable to `info`. Alternatively, logging can be enabled at runtime by calling `setLogLevel` in the `@azure/logger`:
|
512
512
|
|
513
513
|
```javascript
|
514
|
-
|
514
|
+
const { setLogLevel } = require("@azure/logger");
|
515
515
|
|
516
516
|
setLogLevel("info");
|
517
517
|
```
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@azure/storage-blob",
|
3
3
|
"sdk-type": "client",
|
4
|
-
"version": "12.10.1-alpha.
|
4
|
+
"version": "12.10.1-alpha.20220524.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",
|
@@ -52,8 +52,8 @@
|
|
52
52
|
"integration-test:node": "nyc mocha -r esm --require source-map-support/register --reporter ../../../common/tools/mocha-multi-reporter.js --full-trace -t 300000 \"dist-esm/storage-blob/test/*.spec.js\" \"dist-esm/storage-blob/test/node/*.spec.js\"",
|
53
53
|
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
|
54
54
|
"generate:client": "autorest --typescript ./swagger/README.md",
|
55
|
-
"lint:fix": "eslint package.json api-extractor.json src test --ext .ts --fix",
|
56
|
-
"lint": "eslint package.json api-extractor.json src test --ext .ts",
|
55
|
+
"lint:fix": "eslint package.json api-extractor.json README.md src test --ext .ts,.javascript,.js --fix",
|
56
|
+
"lint": "eslint package.json api-extractor.json README.md src test --ext .ts,.javascript,.js",
|
57
57
|
"pack": "npm pack 2>&1",
|
58
58
|
"test:browser": "npm run clean && npm run build:test && npm run unit-test:browser",
|
59
59
|
"test:node": "npm run clean && npm run build:test && npm run unit-test:node",
|