@azure/abort-controller 2.1.3-alpha.20250804.2 → 2.1.3-alpha.20250820.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 +4 -4
package/README.md CHANGED
@@ -72,7 +72,7 @@ doAsyncWork({ abortSignal: signal });
72
72
 
73
73
  ## Next steps
74
74
 
75
- You can build and run the tests locally by executing `rushx test`. Explore the `test` folder to see advanced usage and behavior of the public classes.
75
+ You can build and run the tests locally by executing `npm run test`. Explore the `test` folder to see advanced usage and behavior of the public classes.
76
76
 
77
77
  ## Troubleshooting
78
78
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@azure/abort-controller",
3
3
  "sdk-type": "client",
4
- "version": "2.1.3-alpha.20250804.2",
4
+ "version": "2.1.3-alpha.20250820.1",
5
5
  "description": "Microsoft Azure SDK for JavaScript - Aborter",
6
6
  "author": "Microsoft Corporation",
7
7
  "license": "MIT",
@@ -60,11 +60,11 @@
60
60
  "scripts": {
61
61
  "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
62
62
  "build:samples": "echo Obsolete",
63
- "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,mjs,cjs,json}\"",
64
- "clean": "dev-tool run vendored rimraf --glob dist dist-* temp types *.tgz *.log",
63
+ "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,mjs,cjs,json}\"",
64
+ "clean": "rimraf --glob dist dist-* temp types *.tgz *.log",
65
65
  "execute:samples": "echo skipped",
66
66
  "extract-api": "dev-tool run build-package && dev-tool run extract-api",
67
- "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,mjs,cjs,json}\"",
67
+ "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.{ts,cts,mts}\" \"test/**/*.{ts,cts,mts}\" \"*.{js,mjs,cjs,json}\"",
68
68
  "lint": "eslint package.json src test",
69
69
  "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
70
70
  "pack": "npm pack 2>&1",