@azure/cosmos 4.6.0-alpha.20251013.1 → 4.6.0-alpha.20251015.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/cosmos",
|
|
3
|
-
"version": "4.6.0-alpha.
|
|
3
|
+
"version": "4.6.0-alpha.20251015.1",
|
|
4
4
|
"description": "Microsoft Azure Cosmos DB Service Node.js SDK for NOSQL API",
|
|
5
5
|
"sdk-type": "client",
|
|
6
6
|
"keywords": [
|
|
@@ -68,15 +68,19 @@
|
|
|
68
68
|
"@vitest/browser": "^3.2.3",
|
|
69
69
|
"@vitest/coverage-istanbul": "^3.2.3",
|
|
70
70
|
"assertion-error": "^2.0.1",
|
|
71
|
+
"cross-env": "^7.0.3",
|
|
71
72
|
"dotenv": "^16.0.0",
|
|
72
73
|
"eslint": "^9.33.0",
|
|
73
74
|
"nock": "^13.5.4",
|
|
74
75
|
"playwright": "^1.50.1",
|
|
76
|
+
"prettier": "^3.6.2",
|
|
77
|
+
"rimraf": "^6.0.1",
|
|
78
|
+
"tshy": "^3.0.0",
|
|
75
79
|
"typescript": "~5.9.3",
|
|
76
80
|
"vitest": "^3.2.3",
|
|
77
|
-
"@azure-tools/test-utils-vitest": "^2.0.1",
|
|
78
81
|
"@azure/dev-tool": "^1.0.0",
|
|
79
|
-
"@azure/eslint-plugin-azure-sdk": "^3.0.0"
|
|
82
|
+
"@azure/eslint-plugin-azure-sdk": "^3.0.0",
|
|
83
|
+
"@azure-tools/test-utils-vitest": "^2.0.1"
|
|
80
84
|
},
|
|
81
85
|
"//sampleConfiguration": {
|
|
82
86
|
"skip": [
|
|
@@ -158,19 +162,19 @@
|
|
|
158
162
|
"scripts": {
|
|
159
163
|
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
160
164
|
"build:samples": "tsc -p tsconfig.samples.json",
|
|
161
|
-
"check-format": "
|
|
162
|
-
"clean": "
|
|
165
|
+
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
|
|
166
|
+
"clean": "rimraf --glob dist dist-esm temp types *.tgz *.html *.log *.tsbuildinfo test/**/*.{js,js.map,d.ts}",
|
|
163
167
|
"execute:samples": "dev-tool samples run samples-dev",
|
|
164
168
|
"extract-api": "npm run build && dev-tool run extract-api",
|
|
165
|
-
"format": "
|
|
166
|
-
"lint": "
|
|
167
|
-
"lint:fix": "
|
|
169
|
+
"format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"samples-dev/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
|
|
170
|
+
"lint": "eslint package.json src test",
|
|
171
|
+
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
|
|
168
172
|
"pack": "pnpm pack 2>&1",
|
|
169
173
|
"test": "npm run test:node && npm run test:browser",
|
|
170
174
|
"test:browser": "echo skipped",
|
|
171
175
|
"test:node": "npm run test:node:unit",
|
|
172
|
-
"test:node:integration": "
|
|
173
|
-
"test:node:unit": "
|
|
176
|
+
"test:node:integration": "cross-env NODE_OPTIONS='--dns-result-order=ipv4first' dev-tool run test:vitest --no-test-proxy -- -c vitest.int.config.ts",
|
|
177
|
+
"test:node:unit": "cross-env NODE_OPTIONS='--dns-result-order=ipv4first' dev-tool run test:vitest --no-test-proxy -- -c vitest.unit.config.ts",
|
|
174
178
|
"update-snippets": "dev-tool run update-snippets"
|
|
175
179
|
}
|
|
176
180
|
}
|