@azure/web-pubsub-client-protobuf 1.0.0-alpha.20251010.1 → 1.0.0-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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/web-pubsub-client-protobuf",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.20251014.1",
|
|
4
4
|
"description": "Azure Web PubSub Client Protobuf",
|
|
5
5
|
"sdk-type": "client",
|
|
6
6
|
"type": "module",
|
|
@@ -42,15 +42,19 @@
|
|
|
42
42
|
"@vitest/browser": "^3.2.3",
|
|
43
43
|
"@vitest/coverage-istanbul": "^3.2.3",
|
|
44
44
|
"cpy-cli": "^6.0.0",
|
|
45
|
+
"cross-env": "^7.0.3",
|
|
45
46
|
"dotenv": "^16.0.0",
|
|
46
47
|
"eslint": "^9.33.0",
|
|
47
48
|
"move-file-cli": "^3.0.0",
|
|
48
49
|
"playwright": "^1.50.1",
|
|
50
|
+
"prettier": "^3.6.2",
|
|
49
51
|
"protobufjs-cli": "^1.1.3",
|
|
52
|
+
"rimraf": "^6.0.1",
|
|
53
|
+
"tshy": "^3.0.0",
|
|
50
54
|
"typescript": "~5.9.3",
|
|
51
55
|
"vitest": "^3.2.3",
|
|
52
|
-
"@azure-tools/test-utils-vitest": "^2.0.1",
|
|
53
56
|
"@azure/dev-tool": "^1.0.0",
|
|
57
|
+
"@azure-tools/test-utils-vitest": "^2.0.1",
|
|
54
58
|
"@azure/eslint-plugin-azure-sdk": "^3.0.0"
|
|
55
59
|
},
|
|
56
60
|
"//sampleConfiguration": {
|
|
@@ -103,14 +107,14 @@
|
|
|
103
107
|
"build-protobuf:cjs": "pbjs -t static-module -w commonjs -o ./src/generated/clientProto.js ./src/protos/client.proto && pbts -o ./src/generated/clientProto.d.ts ./src/generated/clientProto.js && move-file ./src/generated/clientProto.js ./src/generated/clientProto.cjs",
|
|
104
108
|
"build-protobuf:esm": "pbjs -t static-module -w es6 -o ./src/generated/clientProto.js ./src/protos/client.proto && pbts -o ./src/generated/clientProto.d.ts ./src/generated/clientProto.js",
|
|
105
109
|
"build:samples": "dev-tool samples publish -f",
|
|
106
|
-
"check-format": "
|
|
107
|
-
"clean": "
|
|
110
|
+
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
111
|
+
"clean": "rimraf --glob dist test-dist temp types *.tgz *.log",
|
|
108
112
|
"copy-files": "npm run copy-files:cjs && npm run copy-files:esm",
|
|
109
113
|
"copy-files:cjs": "cpy --flat --rename=clientProto.js ./src/generated/clientProto.cjs ./dist/commonjs/generated/ && cpy --flat ./src/generated/clientProto.d.ts ./dist/esm/generated/",
|
|
110
114
|
"copy-files:esm": "cpy --flat ./src/generated/clientProto.js ./dist/esm/generated/ && cpy --flat ./src/generated/clientProto.d.ts ./dist/esm/generated/",
|
|
111
115
|
"execute:samples": "dev-tool samples run samples-dev",
|
|
112
116
|
"extract-api": "dev-tool run build-package && dev-tool run extract-api",
|
|
113
|
-
"format": "
|
|
117
|
+
"format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
114
118
|
"lint": "eslint package.json src test",
|
|
115
119
|
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
|
|
116
120
|
"pack": "pnpm pack 2>&1",
|