astro-vscode 2.14.2 → 2.15.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/dist/node/client.js +24 -24
- package/dist/node/server.js +479 -922
- package/package.json +10 -4
package/package.json
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"color": "#17191E",
|
|
25
25
|
"theme": "dark"
|
|
26
26
|
},
|
|
27
|
-
"version": "2.
|
|
27
|
+
"version": "2.15.1",
|
|
28
28
|
"author": "withastro",
|
|
29
29
|
"license": "MIT",
|
|
30
30
|
"publisher": "astro-build",
|
|
@@ -154,6 +154,12 @@
|
|
|
154
154
|
"type": "boolean",
|
|
155
155
|
"default": false,
|
|
156
156
|
"description": "Enable experimental support for content collection intellisense inside Markdown, MDX and Markdoc. Note that this require also enabling the feature in your Astro config (experimental.contentCollectionIntellisense) (Astro 4.14+)"
|
|
157
|
+
},
|
|
158
|
+
"astro.updateImportsOnFileMove.enabled": {
|
|
159
|
+
"scope": "resource",
|
|
160
|
+
"type": "boolean",
|
|
161
|
+
"default": false,
|
|
162
|
+
"description": "Controls whether the extension updates imports when a file is moved to a new location. In most cases, you'll want to keep this disabled as TypeScript and the Astro TypeScript plugin already handles this for you. Having multiple tools updating imports at the same time can lead to corrupted files."
|
|
157
163
|
}
|
|
158
164
|
}
|
|
159
165
|
},
|
|
@@ -230,14 +236,14 @@
|
|
|
230
236
|
]
|
|
231
237
|
},
|
|
232
238
|
"devDependencies": {
|
|
233
|
-
"@astrojs/language-server": "^2.
|
|
239
|
+
"@astrojs/language-server": "^2.15.0",
|
|
234
240
|
"@astrojs/ts-plugin": "^1.10.2",
|
|
235
241
|
"@types/glob": "^8.1.0",
|
|
236
242
|
"@types/mocha": "^10.0.1",
|
|
237
243
|
"@types/node": "^18.17.8",
|
|
238
244
|
"@types/vscode": "^1.82.0",
|
|
239
|
-
"@volar/language-server": "~2.4.
|
|
240
|
-
"@volar/vscode": "~2.4.
|
|
245
|
+
"@volar/language-server": "~2.4.5",
|
|
246
|
+
"@volar/vscode": "~2.4.5",
|
|
241
247
|
"@vscode/test-electron": "^2.3.2",
|
|
242
248
|
"@vscode/vsce": "2.30.0",
|
|
243
249
|
"esbuild": "^0.17.19",
|