@azure/notification-hubs 2.0.0-alpha.20240924.2 → 2.0.0-alpha.20240926.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/package.json +13 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/notification-hubs",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.20240926.1",
|
|
4
4
|
"description": "Azure Notification Hubs SDK for JavaScript",
|
|
5
5
|
"sdk-type": "client",
|
|
6
6
|
"main": "./dist/commonjs/index.js",
|
|
@@ -18,27 +18,27 @@
|
|
|
18
18
|
"types": "./dist/commonjs/index.d.ts",
|
|
19
19
|
"scripts": {
|
|
20
20
|
"audit": "node ../../../common/scripts/rush-audit.js && rimraf -G node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
|
|
21
|
-
"build:samples": "echo Obsolete",
|
|
22
|
-
"build:test": "tshy && dev-tool run build-test",
|
|
23
21
|
"build": "npm run build:test && dev-tool run extract-api",
|
|
22
|
+
"build:samples": "echo Obsolete",
|
|
23
|
+
"build:test": "dev-tool run build-package && dev-tool run build-test",
|
|
24
24
|
"check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
|
|
25
25
|
"clean": "rimraf --glob dist dist-* temp types *.tgz *.log",
|
|
26
26
|
"execute:samples": "tsx",
|
|
27
|
-
"extract-api": "
|
|
27
|
+
"extract-api": "dev-tool run build-package && dev-tool run extract-api",
|
|
28
28
|
"format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
29
|
+
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
|
|
29
30
|
"integration-test:browser": "npm run build:test && dev-tool run test:vitest --browser -- -c vitest.browser.int.config.ts",
|
|
30
31
|
"integration-test:node": "dev-tool run test:vitest -- -c vitest.int.config.ts",
|
|
31
|
-
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
|
|
32
|
-
"lint:fix": "eslint README.md package.json api-extractor.json src test --fix --fix-type [problem,suggestion]",
|
|
33
32
|
"lint": "eslint README.md package.json api-extractor.json src test",
|
|
33
|
+
"lint:fix": "eslint README.md package.json api-extractor.json src test --fix --fix-type [problem,suggestion]",
|
|
34
34
|
"pack": "npm pack 2>&1",
|
|
35
|
+
"test": "npm run clean && dev-tool run build-package && npm run unit-test:node && npm run build:test && npm run unit-test:browser && npm run integration-test",
|
|
35
36
|
"test:browser": "npm run clean && npm run build:test && npm run integration-test:browser",
|
|
36
|
-
"test:node": "npm run clean &&
|
|
37
|
-
"test": "npm run
|
|
37
|
+
"test:node": "npm run clean && dev-tool run build-package && npm run integration-test:node",
|
|
38
|
+
"unit-test": "npm run unit-test:node && npm run unit-test:browser",
|
|
38
39
|
"unit-test:browser": "npm run build:test && dev-tool run test:vitest --no-test-proxy --browser -- -c vitest.browser.unit.config.ts",
|
|
39
40
|
"unit-test:node": "dev-tool run test:vitest --no-test-proxy -- -c vitest.unit.config.ts",
|
|
40
|
-
"
|
|
41
|
-
"update-snippets": "tshy && dev-tool run update-snippets"
|
|
41
|
+
"update-snippets": "dev-tool run update-snippets"
|
|
42
42
|
},
|
|
43
43
|
"files": [
|
|
44
44
|
"dist/",
|
|
@@ -63,9 +63,9 @@
|
|
|
63
63
|
"sideEffects": false,
|
|
64
64
|
"prettier": "@azure/eslint-plugin-azure-sdk/prettier.json",
|
|
65
65
|
"devDependencies": {
|
|
66
|
+
"@azure-tools/test-recorder": "^4.0.0",
|
|
66
67
|
"@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
|
|
67
68
|
"@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
|
|
68
|
-
"@azure-tools/test-recorder": "^4.0.0",
|
|
69
69
|
"@microsoft/api-extractor": "^7.43.7",
|
|
70
70
|
"@types/node": "^18.0.0",
|
|
71
71
|
"@vitest/browser": "^2.0.5",
|
|
@@ -74,14 +74,14 @@
|
|
|
74
74
|
"eslint": "^9.9.0",
|
|
75
75
|
"playwright": "^1.43.0",
|
|
76
76
|
"rimraf": "^5.0.5",
|
|
77
|
-
"tshy": "^2.0.0",
|
|
78
77
|
"tsx": "^4.19.1",
|
|
79
78
|
"typescript": "~5.5.3",
|
|
80
79
|
"vitest": "^2.0.5"
|
|
81
80
|
},
|
|
82
81
|
"dependencies": {
|
|
83
|
-
"@azure/core-
|
|
82
|
+
"@azure-rest/core-client": "^2.0.0",
|
|
84
83
|
"@azure/abort-controller": "^2.1.2",
|
|
84
|
+
"@azure/core-auth": "^1.7.2",
|
|
85
85
|
"@azure/core-lro": "^3.0.0",
|
|
86
86
|
"@azure/core-paging": "^1.6.2",
|
|
87
87
|
"@azure/core-rest-pipeline": "^1.15.2",
|
|
@@ -89,7 +89,6 @@
|
|
|
89
89
|
"@azure/core-util": "^1.9.0",
|
|
90
90
|
"@azure/core-xml": "^1.4.2",
|
|
91
91
|
"@azure/logger": "^1.1.2",
|
|
92
|
-
"@azure-rest/core-client": "^2.0.0",
|
|
93
92
|
"tslib": "^2.6.2"
|
|
94
93
|
},
|
|
95
94
|
"tshy": {
|