@azure/digital-twins-core 2.0.0-alpha.20251013.1 → 2.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 +9 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/digital-twins-core",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.20251014.1",
|
|
4
4
|
"description": "An isomorphic client library for Azure Digital Twins",
|
|
5
5
|
"sdk-type": "client",
|
|
6
6
|
"author": "Microsoft Corporation",
|
|
@@ -49,15 +49,19 @@
|
|
|
49
49
|
"@types/node": "^20.19.0",
|
|
50
50
|
"@vitest/browser": "^3.2.3",
|
|
51
51
|
"@vitest/coverage-istanbul": "^3.2.3",
|
|
52
|
+
"cross-env": "^7.0.3",
|
|
52
53
|
"dotenv": "^16.0.0",
|
|
53
54
|
"eslint": "^9.33.0",
|
|
54
55
|
"playwright": "^1.50.1",
|
|
56
|
+
"prettier": "^3.6.2",
|
|
57
|
+
"rimraf": "^6.0.1",
|
|
58
|
+
"tshy": "^3.0.0",
|
|
55
59
|
"typescript": "~5.9.3",
|
|
56
60
|
"vitest": "^3.2.3",
|
|
61
|
+
"@azure-tools/test-utils-vitest": "^2.0.1",
|
|
57
62
|
"@azure-tools/test-credential": "^2.1.2",
|
|
58
63
|
"@azure/dev-tool": "^1.0.0",
|
|
59
64
|
"@azure/eslint-plugin-azure-sdk": "^3.0.0",
|
|
60
|
-
"@azure-tools/test-utils-vitest": "^2.0.1",
|
|
61
65
|
"@azure-tools/test-recorder": "^4.1.1"
|
|
62
66
|
},
|
|
63
67
|
"sideEffects": false,
|
|
@@ -137,12 +141,12 @@
|
|
|
137
141
|
"scripts": {
|
|
138
142
|
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
139
143
|
"build:samples": "tsc -p tsconfig.samples.json",
|
|
140
|
-
"check-format": "
|
|
141
|
-
"clean": "
|
|
144
|
+
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
145
|
+
"clean": "rimraf --glob dist dist-esm dist-browser test-dist test-browser types *.tgz *.log",
|
|
142
146
|
"execute:js-samples": "node ../../../common/scripts/run-samples.js samples/javascript/",
|
|
143
147
|
"execute:samples": "dev-tool samples run samples-dev",
|
|
144
148
|
"extract-api": "dev-tool run build-package && dev-tool run extract-api",
|
|
145
|
-
"format": "
|
|
149
|
+
"format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
|
|
146
150
|
"lint": "eslint package.json src test",
|
|
147
151
|
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
|
|
148
152
|
"pack": "pnpm pack 2>&1",
|