astro-vscode 2.13.4 → 2.14.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 +680 -242
- package/package.json +11 -5
package/package.json
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"color": "#17191E",
|
|
25
25
|
"theme": "dark"
|
|
26
26
|
},
|
|
27
|
-
"version": "2.
|
|
27
|
+
"version": "2.14.1",
|
|
28
28
|
"author": "withastro",
|
|
29
29
|
"license": "MIT",
|
|
30
30
|
"publisher": "astro-build",
|
|
@@ -148,6 +148,12 @@
|
|
|
148
148
|
],
|
|
149
149
|
"default": "off",
|
|
150
150
|
"description": "Traces the communication between VS Code and the language server."
|
|
151
|
+
},
|
|
152
|
+
"astro.content-intellisense": {
|
|
153
|
+
"scope": "resource",
|
|
154
|
+
"type": "boolean",
|
|
155
|
+
"default": false,
|
|
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+)"
|
|
151
157
|
}
|
|
152
158
|
}
|
|
153
159
|
},
|
|
@@ -223,14 +229,14 @@
|
|
|
223
229
|
]
|
|
224
230
|
},
|
|
225
231
|
"devDependencies": {
|
|
226
|
-
"@astrojs/language-server": "^2.
|
|
227
|
-
"@astrojs/ts-plugin": "^1.
|
|
232
|
+
"@astrojs/language-server": "^2.14.1",
|
|
233
|
+
"@astrojs/ts-plugin": "^1.10.1",
|
|
228
234
|
"@types/glob": "^8.1.0",
|
|
229
235
|
"@types/mocha": "^10.0.1",
|
|
230
236
|
"@types/node": "^18.17.8",
|
|
231
237
|
"@types/vscode": "^1.82.0",
|
|
232
|
-
"@volar/language-server": "~2.4.0
|
|
233
|
-
"@volar/vscode": "~2.4.0
|
|
238
|
+
"@volar/language-server": "~2.4.0",
|
|
239
|
+
"@volar/vscode": "~2.4.0",
|
|
234
240
|
"@vscode/test-electron": "^2.3.2",
|
|
235
241
|
"@vscode/vsce": "2.30.0",
|
|
236
242
|
"esbuild": "^0.17.19",
|