@azure/eventgrid 5.12.2-alpha.20251013.1 → 5.12.2-alpha.20251014.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 +10 -6
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"sdk-type": "client",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "An isomorphic client library for the Azure Event Grid service.",
|
|
6
|
-
"version": "5.12.2-alpha.
|
|
6
|
+
"version": "5.12.2-alpha.20251014.1",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"node",
|
|
9
9
|
"azure",
|
|
@@ -75,16 +75,20 @@
|
|
|
75
75
|
"@types/node": "^20.19.0",
|
|
76
76
|
"@vitest/browser": "^3.2.3",
|
|
77
77
|
"@vitest/coverage-istanbul": "^3.2.3",
|
|
78
|
+
"cross-env": "^7.0.3",
|
|
78
79
|
"dotenv": "^16.0.0",
|
|
79
80
|
"eslint": "^9.33.0",
|
|
80
81
|
"playwright": "^1.50.1",
|
|
82
|
+
"prettier": "^3.6.2",
|
|
83
|
+
"rimraf": "^6.0.1",
|
|
84
|
+
"tshy": "^3.0.0",
|
|
81
85
|
"typescript": "~5.9.3",
|
|
82
86
|
"vitest": "^3.2.3",
|
|
83
87
|
"@azure-tools/test-credential": "^2.1.2",
|
|
84
88
|
"@azure-tools/test-utils-vitest": "^2.0.1",
|
|
85
|
-
"@azure-tools/test-recorder": "^4.1.1",
|
|
86
89
|
"@azure/dev-tool": "^1.0.0",
|
|
87
|
-
"@azure/eslint-plugin-azure-sdk": "^3.0.0"
|
|
90
|
+
"@azure/eslint-plugin-azure-sdk": "^3.0.0",
|
|
91
|
+
"@azure-tools/test-recorder": "^4.1.1"
|
|
88
92
|
},
|
|
89
93
|
"type": "module",
|
|
90
94
|
"tshy": {
|
|
@@ -128,11 +132,11 @@
|
|
|
128
132
|
"scripts": {
|
|
129
133
|
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
130
134
|
"build:samples": "tsc -p tsconfig.samples.json",
|
|
131
|
-
"check-format": "
|
|
132
|
-
"clean": "
|
|
135
|
+
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
136
|
+
"clean": "rimraf --glob dist dist-browser dist-esm dist-test temp types *.tgz *.log",
|
|
133
137
|
"execute:samples": "dev-tool samples run samples-dev",
|
|
134
138
|
"extract-api": "dev-tool run build-package && dev-tool run extract-api",
|
|
135
|
-
"format": "
|
|
139
|
+
"format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
136
140
|
"generate:client": "autorest --typescript ./swagger/README.md && node ./scripts/setPathToEmpty.js",
|
|
137
141
|
"lint": "eslint package.json src test",
|
|
138
142
|
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
|