@azure/core-amqp 4.4.1-alpha.20250804.2 → 4.4.1-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.
- package/README.md +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -32,7 +32,7 @@ Some of the key features of Azure Core AMQP library are:
|
|
|
32
32
|
|
|
33
33
|
## Next steps
|
|
34
34
|
|
|
35
|
-
You can build and run the tests locally by executing `
|
|
35
|
+
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.
|
|
36
36
|
|
|
37
37
|
## Troubleshooting
|
|
38
38
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/core-amqp",
|
|
3
3
|
"sdk-type": "client",
|
|
4
|
-
"version": "4.4.1-alpha.
|
|
4
|
+
"version": "4.4.1-alpha.20250820.1",
|
|
5
5
|
"description": "Common library for amqp based azure sdks like @azure/event-hubs.",
|
|
6
6
|
"author": "Microsoft Corporation",
|
|
7
7
|
"license": "MIT",
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
"scripts": {
|
|
46
46
|
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
47
47
|
"build:samples": "echo skipped.",
|
|
48
|
-
"check-format": "
|
|
49
|
-
"clean": "
|
|
48
|
+
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
|
|
49
|
+
"clean": "rimraf --glob dist dist-* temp types coverage coverage-browser .nyc_output *.tgz *.log test*.xml",
|
|
50
50
|
"execute:samples": "echo skipped",
|
|
51
51
|
"extract-api": "dev-tool run build-package && dev-tool run extract-api",
|
|
52
|
-
"format": "
|
|
52
|
+
"format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
|
|
53
53
|
"lint": "eslint package.json src test",
|
|
54
54
|
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
|
|
55
55
|
"pack": "npm pack 2>&1",
|