astro-vscode 2.15.4 → 2.16.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.
@@ -1,12 +1,12 @@
1
1
 
2
- > astro-vscode@2.15.4 build /home/runner/work/language-tools/language-tools/packages/vscode
2
+ > astro-vscode@2.16.1 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.4 prebuild /home/runner/work/language-tools/language-tools/packages/vscode
6
+ > astro-vscode@2.16.1 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.4 build /home/runner/work/language-tools/language-tools/packages/ts-plugin
10
+ > @astrojs/ts-plugin@1.10.6 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,26 @@
1
1
  # astro-vscode
2
2
 
3
+ ## 2.16.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#14740](https://github.com/withastro/astro/pull/14740) [`abfed97`](https://github.com/withastro/astro/commit/abfed97d45ab04c625d6463f9be1e5b1d23c3573) Thanks [@ArmandPhilippot](https://github.com/ArmandPhilippot)! - Fixes link targets in documentation following repository relocation.
8
+
9
+ - [#14710](https://github.com/withastro/astro/pull/14710) [`c6903cd`](https://github.com/withastro/astro/commit/c6903cd6ce20e17d6604ea3412bd66ea8387d079) Thanks [@RomanHauksson](https://github.com/RomanHauksson)! - Fixes the displayed description for the Content-intellisense setting to refer to the correct configuration file option
10
+
11
+ ## 2.16.0
12
+
13
+ ### Minor Changes
14
+
15
+ - [#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/astro/issues/14642 for more details.
16
+
17
+ ## 2.15.5
18
+
19
+ ### Patch Changes
20
+
21
+ - 2cbd3f6: Updates the autocomplete options for `export const prerender=` to remove `import.meta.env`, as this option was removed in Astro 4.14
22
+ - 6dfd814: Updated internal Volar version. This update should improve compatibility with newer versions of TypeScript and fix minor issues.
23
+
3
24
  ## 2.15.4
4
25
 
5
26
  ### Patch Changes
@@ -16,7 +37,7 @@
16
37
 
17
38
  ### Patch Changes
18
39
 
19
- - 43f66cd: Fixes publishing on OpenVSX. For full changelogs between 2.11.0 and this version, please see [CHANGELOG.md](https://github.com/withastro/language-tools/blob/main/packages/vscode/CHANGELOG.md) in the repository.
40
+ - 43f66cd: Fixes publishing on OpenVSX. For full changelogs between 2.11.0 and this version, please see [CHANGELOG.md](https://github.com/withastro/astro/blob/main/packages/language-tools/vscode/CHANGELOG.md) in the repository.
20
41
 
21
42
  ## 2.15.1
22
43
 
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  > 🧑‍🚀 Not sure what Astro is? See our website at [astro.build](https://astro.build)!
4
4
 
5
- Provides language support for `.astro` files. This extension is powered by the [Astro language server](https://github.com/withastro/language-tools/tree/main/packages/language-server).
5
+ Provides language support for `.astro` files. This extension is powered by the [Astro language server](https://github.com/withastro/astro/tree/main/packages/language-tools/language-server).
6
6
 
7
7
  ## Features
8
8
 
@@ -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;