@azure/core-amqp 4.4.0-alpha.20240924.1 → 4.4.0-alpha.20240925.5
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/package.json +9 -9
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.0-alpha.
|
|
4
|
+
"version": "4.4.0-alpha.20240925.5",
|
|
5
5
|
"description": "Common library for amqp based azure sdks like @azure/event-hubs.",
|
|
6
6
|
"author": "Microsoft Corporation",
|
|
7
7
|
"license": "MIT",
|
|
@@ -42,14 +42,14 @@
|
|
|
42
42
|
"LICENSE"
|
|
43
43
|
],
|
|
44
44
|
"scripts": {
|
|
45
|
-
"bundle": "
|
|
45
|
+
"bundle": "dev-tool run build-package && dev-tool run bundle --polyfill-node false --inject-node-polyfills true --ignore-missing-node-builtins true",
|
|
46
46
|
"build:samples": "echo Obsolete",
|
|
47
47
|
"build:test": "echo skipped. actual commands inlined in browser test scripts",
|
|
48
|
-
"build": "npm run clean &&
|
|
48
|
+
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
49
49
|
"check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
|
|
50
50
|
"clean": "rimraf --glob dist dist-* temp types coverage coverage-browser .nyc_output *.tgz *.log test*.xml",
|
|
51
51
|
"execute:samples": "echo skipped",
|
|
52
|
-
"extract-api": "
|
|
52
|
+
"extract-api": "dev-tool run build-package && dev-tool run extract-api",
|
|
53
53
|
"format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
|
|
54
54
|
"integration-test:browser": "echo skipped",
|
|
55
55
|
"integration-test:node": "echo skipped",
|
|
@@ -58,11 +58,12 @@
|
|
|
58
58
|
"lint": "eslint package.json api-extractor.json src test",
|
|
59
59
|
"pack": "npm pack 2>&1",
|
|
60
60
|
"test:browser": "npm run clean && npm run unit-test:browser && npm run integration-test:browser",
|
|
61
|
-
"test:node": "npm run clean &&
|
|
62
|
-
"test": "npm run clean &&
|
|
63
|
-
"unit-test:browser": "npm run clean &&
|
|
61
|
+
"test:node": "npm run clean && dev-tool run build-package && npm run unit-test:node && npm run integration-test:node",
|
|
62
|
+
"test": "npm run clean && dev-tool run build-package && npm run unit-test:node && npm run bundle && npm run unit-test:browser && npm run integration-test",
|
|
63
|
+
"unit-test:browser": "npm run clean && dev-tool run build-package && dev-tool run build-test && dev-tool run test:vitest --no-test-proxy --browser",
|
|
64
64
|
"unit-test:node": "dev-tool run test:vitest --no-test-proxy",
|
|
65
|
-
"unit-test": "npm run unit-test:node && npm run unit-test:browser"
|
|
65
|
+
"unit-test": "npm run unit-test:node && npm run unit-test:browser",
|
|
66
|
+
"update-snippets": "dev-tool run update-snippets"
|
|
66
67
|
},
|
|
67
68
|
"engines": {
|
|
68
69
|
"node": ">=18.0.0"
|
|
@@ -100,7 +101,6 @@
|
|
|
100
101
|
"eslint": "^9.9.0",
|
|
101
102
|
"playwright": "^1.43.1",
|
|
102
103
|
"rimraf": "^5.0.7",
|
|
103
|
-
"tshy": "^2.0.0",
|
|
104
104
|
"typescript": "~5.6.2",
|
|
105
105
|
"vitest": "^2.0.5",
|
|
106
106
|
"ws": "^8.17.0"
|