astro-vscode 2.15.4 → 2.16.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/.turbo/turbo-build.log +3 -3
- package/.vscode-test.js +13 -0
- package/CHANGELOG.md +13 -0
- package/dist/.vscode-test.d.ts +2 -0
- package/dist/node/client.js +26 -26
- package/dist/node/server.js +519 -544
- package/package.json +19 -14
- package/src/client.ts +5 -0
- package/syntaxes/astro.tmLanguage.json +2 -4
- package/syntaxes/mdx.astro.tmLanguage.json +1 -1
- package/test/{suite/extension.test.js → extension.test.js} +1 -1
- package/test/grammar/test.mjs +4 -4
- package/tsconfig.json +4 -4
- package/test/runTest.js +0 -27
- package/test/suite/index.js +0 -40
- package/test/tsconfig.json +0 -14
- /package/dist/{client.d.ts → src/client.d.ts} +0 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
|
|
2
|
-
> astro-vscode@2.
|
|
2
|
+
> astro-vscode@2.16.0 build /home/runner/work/astro/astro/packages/language-tools/vscode
|
|
3
3
|
> tsc && pnpm prebuild && node scripts/build.mjs -- --minify
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
> astro-vscode@2.
|
|
6
|
+
> astro-vscode@2.16.0 prebuild /home/runner/work/astro/astro/packages/language-tools/vscode
|
|
7
7
|
> cd ../ts-plugin && pnpm build
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
> @astrojs/ts-plugin@1.10.
|
|
10
|
+
> @astrojs/ts-plugin@1.10.5 build /home/runner/work/astro/astro/packages/language-tools/ts-plugin
|
|
11
11
|
> tsc
|
|
12
12
|
|
package/.vscode-test.js
ADDED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# astro-vscode
|
|
2
2
|
|
|
3
|
+
## 2.16.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#14584](https://github.com/withastro/astro/pull/14584) [`3c7ab17`](https://github.com/withastro/astro/commit/3c7ab178da26d095777495bcee94b468937936a3) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Adds a new setting for disabling the Auto Import Cache. The cache can cause an issue where new files are not able to be automatically imported using autocomplete in certain cases. Check https://github.com/withastro/language-tools/issues/1035 for more details.
|
|
8
|
+
|
|
9
|
+
## 2.15.5
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 2cbd3f6: Updates the autocomplete options for `export const prerender=` to remove `import.meta.env`, as this option was removed in Astro 4.14
|
|
14
|
+
- 6dfd814: Updated internal Volar version. This update should improve compatibility with newer versions of TypeScript and fix minor issues.
|
|
15
|
+
|
|
3
16
|
## 2.15.4
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _exports: ((import("@vscode/test-cli").IConfigurationWithGlobalOptions | import("@vscode/test-cli").TestConfiguration | import("@vscode/test-cli").TestConfiguration[]) | Promise<import("@vscode/test-cli").IConfigurationWithGlobalOptions | import("@vscode/test-cli").TestConfiguration | import("@vscode/test-cli").TestConfiguration[]>) | (() => (import("@vscode/test-cli").IConfigurationWithGlobalOptions | import("@vscode/test-cli").TestConfiguration | import("@vscode/test-cli").TestConfiguration[]) | Promise<import("@vscode/test-cli").IConfigurationWithGlobalOptions | import("@vscode/test-cli").TestConfiguration | import("@vscode/test-cli").TestConfiguration[]>);
|
|
2
|
+
export = _exports;
|