typespec-vscode 1.6.0-dev.1 → 1.6.0-dev.3
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/ThirdPartyNotices.txt
CHANGED
|
@@ -9,7 +9,7 @@ components are set forth below. Microsoft reserves all rights not expressly
|
|
|
9
9
|
granted herein, whether by implication, estoppel or otherwise.
|
|
10
10
|
|
|
11
11
|
1. @babel/code-frame version 7.27.1 (https://github.com/babel/babel)
|
|
12
|
-
2. @babel/helper-validator-identifier version 7.
|
|
12
|
+
2. @babel/helper-validator-identifier version 7.28.5 (https://github.com/babel/babel)
|
|
13
13
|
3. ajv version 8.17.1 (ajv-validator/ajv)
|
|
14
14
|
4. balanced-match version 1.0.2 (https://github.com/juliangruber/balanced-match)
|
|
15
15
|
5. brace-expansion version 2.0.2 (https://github.com/juliangruber/brace-expansion)
|
|
@@ -26,7 +26,7 @@ granted herein, whether by implication, estoppel or otherwise.
|
|
|
26
26
|
16. mustache version 4.2.0 (https://github.com/janl/mustache.js)
|
|
27
27
|
17. path-key version 3.1.1 (sindresorhus/path-key)
|
|
28
28
|
18. picocolors version 1.1.1 (alexeyraspopov/picocolors)
|
|
29
|
-
19. semver version 7.7.
|
|
29
|
+
19. semver version 7.7.3 (https://github.com/npm/node-semver)
|
|
30
30
|
20. shebang-command version 2.0.0 (kevva/shebang-command)
|
|
31
31
|
21. shebang-regex version 3.0.0 (sindresorhus/shebang-regex)
|
|
32
32
|
22. which version 2.0.2 (https://github.com/isaacs/node-which)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typespec-vscode",
|
|
3
|
-
"version": "1.6.0-dev.
|
|
3
|
+
"version": "1.6.0-dev.3",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "TypeSpec language support for VS Code",
|
|
6
6
|
"homepage": "https://typespec.io",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"main": "./dist/src/extension.cjs",
|
|
27
27
|
"browser": "./dist/src/web/extension.js",
|
|
28
28
|
"engines": {
|
|
29
|
-
"vscode": "^1.
|
|
29
|
+
"vscode": "^1.105.0"
|
|
30
30
|
},
|
|
31
31
|
"exports": {
|
|
32
32
|
".": {
|
|
@@ -264,17 +264,17 @@
|
|
|
264
264
|
"devDependencies": {
|
|
265
265
|
"@types/cross-spawn": "~6.0.6",
|
|
266
266
|
"@types/mocha": "^10.0.9",
|
|
267
|
-
"@types/node": "~24.
|
|
267
|
+
"@types/node": "~24.9.1",
|
|
268
268
|
"@types/semver": "^7.5.8",
|
|
269
|
-
"@types/vscode": "~1.
|
|
269
|
+
"@types/vscode": "~1.105.0",
|
|
270
270
|
"@types/which": "^3.0.4",
|
|
271
271
|
"@typespec/compiler": "^1.5.0",
|
|
272
272
|
"@typespec/internal-build-utils": "^0.75.0 || >=0.76.0-dev <0.76.0",
|
|
273
|
-
"@vitest/coverage-v8": "^
|
|
274
|
-
"@vitest/ui": "^
|
|
273
|
+
"@vitest/coverage-v8": "^4.0.4",
|
|
274
|
+
"@vitest/ui": "^4.0.4",
|
|
275
275
|
"@vscode/extension-telemetry": "^1.0.0",
|
|
276
276
|
"@vscode/test-electron": "^2.3.9",
|
|
277
|
-
"@vscode/test-web": "^0.0.
|
|
277
|
+
"@vscode/test-web": "^0.0.74",
|
|
278
278
|
"@vscode/vsce": "~3.6.0",
|
|
279
279
|
"ajv": "~8.17.1",
|
|
280
280
|
"c8": "^10.1.3",
|
|
@@ -286,7 +286,7 @@
|
|
|
286
286
|
"semver": "^7.7.1",
|
|
287
287
|
"swagger-ui-dist": "^5.20.1",
|
|
288
288
|
"typescript": "~5.9.2",
|
|
289
|
-
"vitest": "^
|
|
289
|
+
"vitest": "^4.0.4",
|
|
290
290
|
"vscode-languageclient": "~9.0.1",
|
|
291
291
|
"which": "^5.0.0",
|
|
292
292
|
"yaml": "~2.8.0"
|
|
@@ -309,6 +309,7 @@
|
|
|
309
309
|
"package-vsix": "vsce package",
|
|
310
310
|
"deploy": "vsce publish",
|
|
311
311
|
"open-in-browser": "vscode-test-web --extensionDevelopmentPath=. .",
|
|
312
|
+
"test:e2e": "pnpm test:web && pnpm test:extension",
|
|
312
313
|
"test:web": "vscode-test-web --quality stable --extensionDevelopmentPath=. --headless --extensionTestsPath=dist/test/web/suite.js ./test/web/data",
|
|
313
314
|
"test:extension": "vitest run --root test/extension"
|
|
314
315
|
}
|
|
Binary file
|