astro-vscode 2.15.3 → 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.
@@ -1,12 +1,12 @@
1
1
 
2
- > astro-vscode@2.15.3 build /home/runner/work/language-tools/language-tools/packages/vscode
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.15.3 prebuild /home/runner/work/language-tools/language-tools/packages/vscode
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.3 build /home/runner/work/language-tools/language-tools/packages/ts-plugin
10
+ > @astrojs/ts-plugin@1.10.5 build /home/runner/work/astro/astro/packages/language-tools/ts-plugin
11
11
  > tsc
12
12
 
@@ -0,0 +1,13 @@
1
+ const { defineConfig } = require('@vscode/test-cli');
2
+
3
+ module.exports = defineConfig([
4
+ {
5
+ label: 'unitTests',
6
+ files: 'test/**/*.test.js',
7
+ version: 'stable',
8
+ mocha: {
9
+ ui: 'tdd',
10
+ timeout: 20000,
11
+ },
12
+ },
13
+ ]);
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
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
+
16
+ ## 2.15.4
17
+
18
+ ### Patch Changes
19
+
20
+ - 128cf11: Improves performance when using TS 5.6. Performance is still degraded compared to 5.5, but should at least be usable.
21
+
3
22
  ## 2.15.3
4
23
 
5
24
  ### 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;