@azure/storage-file-share 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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -489,7 +489,7 @@ A complete example of simple `ShareServiceClient` scenarios is at [samples/v12/t
489
489
  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`:
490
490
 
491
491
  ```javascript
492
- import { setLogLevel } from "@azure/logger";
492
+ const { setLogLevel } = require("@azure/logger");
493
493
 
494
494
  setLogLevel("info");
495
495
  ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@azure/storage-file-share",
3
3
  "sdk-type": "client",
4
- "version": "12.10.1-alpha.20220520.1",
4
+ "version": "12.10.1-alpha.20220524.1",
5
5
  "description": "Microsoft Azure Storage SDK for JavaScript - File",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist-esm/src/index.js",
@@ -49,8 +49,8 @@
49
49
  "integration-test:browser": "karma start --single-run",
50
50
  "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/test/*.spec.js\" \"dist-esm/test/node/*.spec.js\"",
51
51
  "integration-test": "npm run integration-test:node && npm run integration-test:browser",
52
- "lint:fix": "eslint package.json api-extractor.json src test --ext .ts --fix",
53
- "lint": "eslint package.json api-extractor.json src test --ext .ts",
52
+ "lint:fix": "eslint package.json api-extractor.json README.md src test --ext .ts,.javascript,.js --fix",
53
+ "lint": "eslint package.json api-extractor.json README.md src test --ext .ts,.javascript,.js",
54
54
  "pack": "npm pack 2>&1",
55
55
  "test:browser": "npm run clean && npm run build:test && npm run unit-test:browser",
56
56
  "test:node": "npm run clean && npm run build:test && npm run unit-test:node",