astro-vscode 2.16.20 → 2.17.0
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/CHANGELOG.md +16 -0
- package/dist/node/server.js +339 -341
- package/package.json +4 -4
- package/scripts/build.mjs +1 -1
package/package.json
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"color": "#17191E",
|
|
25
25
|
"theme": "dark"
|
|
26
26
|
},
|
|
27
|
-
"version": "2.
|
|
27
|
+
"version": "2.17.0",
|
|
28
28
|
"author": "withastro",
|
|
29
29
|
"license": "MIT",
|
|
30
30
|
"publisher": "astro-build",
|
|
@@ -235,8 +235,8 @@
|
|
|
235
235
|
]
|
|
236
236
|
},
|
|
237
237
|
"devDependencies": {
|
|
238
|
-
"@astrojs/language-server": "^2.
|
|
239
|
-
"@astrojs/ts-plugin": "^1.10.
|
|
238
|
+
"@astrojs/language-server": "^2.17.0",
|
|
239
|
+
"@astrojs/ts-plugin": "^1.10.12",
|
|
240
240
|
"@types/js-yaml": "^4.0.9",
|
|
241
241
|
"@types/mocha": "^10.0.10",
|
|
242
242
|
"@types/node": "^22.10.6",
|
|
@@ -257,7 +257,7 @@
|
|
|
257
257
|
"vscode-tmgrammar-test": "^0.1.3"
|
|
258
258
|
},
|
|
259
259
|
"dependencies": {
|
|
260
|
-
"@astrojs/
|
|
260
|
+
"@astrojs/astro2tsx": "^0.1.0",
|
|
261
261
|
"prettier": "^3.9.0",
|
|
262
262
|
"prettier-plugin-astro": "^0.14.1"
|
|
263
263
|
},
|
package/scripts/build.mjs
CHANGED
|
@@ -26,7 +26,7 @@ export default async function build() {
|
|
|
26
26
|
metafile: metaFile,
|
|
27
27
|
sourcemap: isDev,
|
|
28
28
|
outdir: '.',
|
|
29
|
-
external: ['vscode', '@astrojs/
|
|
29
|
+
external: ['vscode', '@astrojs/astro2tsx', 'prettier', 'prettier-plugin-astro'],
|
|
30
30
|
format: 'cjs',
|
|
31
31
|
platform: 'node',
|
|
32
32
|
tsconfig: './tsconfig.json',
|