astro-vscode 2.8.3 → 2.8.4
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/dist/client.d.ts +4 -0
- package/dist/node/client.js +13 -13
- package/dist/node/server.js +143 -143
- package/package.json +8 -7
package/package.json
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"color": "#17191E",
|
|
25
25
|
"theme": "dark"
|
|
26
26
|
},
|
|
27
|
-
"version": "2.8.
|
|
27
|
+
"version": "2.8.4",
|
|
28
28
|
"author": "withastro",
|
|
29
29
|
"license": "MIT",
|
|
30
30
|
"publisher": "astro-build",
|
|
@@ -208,14 +208,14 @@
|
|
|
208
208
|
]
|
|
209
209
|
},
|
|
210
210
|
"devDependencies": {
|
|
211
|
-
"@astrojs/language-server": "^2.8.
|
|
212
|
-
"@astrojs/ts-plugin": "^1.6.
|
|
211
|
+
"@astrojs/language-server": "^2.8.4",
|
|
212
|
+
"@astrojs/ts-plugin": "^1.6.1",
|
|
213
213
|
"@types/glob": "^8.1.0",
|
|
214
214
|
"@types/mocha": "^10.0.1",
|
|
215
215
|
"@types/node": "^18.17.8",
|
|
216
216
|
"@types/vscode": "^1.82.0",
|
|
217
|
-
"@volar/language-server": "~2.1.
|
|
218
|
-
"@volar/vscode": "~2.1.
|
|
217
|
+
"@volar/language-server": "~2.1.5",
|
|
218
|
+
"@volar/vscode": "~2.1.5",
|
|
219
219
|
"@vscode/test-electron": "^2.3.2",
|
|
220
220
|
"@vscode/vsce": "latest",
|
|
221
221
|
"esbuild": "^0.17.19",
|
|
@@ -234,9 +234,10 @@
|
|
|
234
234
|
},
|
|
235
235
|
"scripts": {
|
|
236
236
|
"prebuild": "cd ../ts-plugin && pnpm build",
|
|
237
|
-
"build": "pnpm prebuild && node scripts/build.mjs -- --minify",
|
|
237
|
+
"build": "tsc && pnpm prebuild && node scripts/build.mjs -- --minify",
|
|
238
238
|
"dev": "node scripts/build.mjs -- --watch",
|
|
239
|
-
"build:grammar": "
|
|
239
|
+
"build:grammar": "node scripts/build-grammar.mjs",
|
|
240
|
+
"dev:grammar": "node scripts/build-grammar.mjs -- --watch",
|
|
240
241
|
"test": "pnpm test:vscode && pnpm test:grammar",
|
|
241
242
|
"test:vscode": "node ./test/runTest.js",
|
|
242
243
|
"test:grammar": "pnpm build:grammar && node ./test/grammar/test.mjs",
|