astro-vscode 2.16.14 → 2.16.15

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 @@
1
-
2
- > astro-vscode@2.16.14 build /home/runner/work/astro/astro/packages/language-tools/vscode
3
- > tsc && pnpm prebuild && node scripts/build.mjs -- --minify
4
-
5
-
6
- > astro-vscode@2.16.14 prebuild /home/runner/work/astro/astro/packages/language-tools/vscode
7
- > cd ../ts-plugin && pnpm build
8
-
9
-
10
- > @astrojs/ts-plugin@1.10.7 build /home/runner/work/astro/astro/packages/language-tools/ts-plugin
11
- > tsc
12
-
1
+ $ tsc -b && node scripts/build.mjs -- --minify
@@ -0,0 +1,14 @@
1
+ import { defineConfig } from '@vscode/test-cli';
2
+
3
+ export default defineConfig([
4
+ {
5
+ label: 'unitTests',
6
+ files: 'test/**/*.test.mts',
7
+ version: 'stable',
8
+ mocha: {
9
+ ui: 'tdd',
10
+ timeout: 20000,
11
+ require: ['tsx'],
12
+ },
13
+ },
14
+ ]);
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # astro-vscode
2
2
 
3
+ ## 2.16.15
4
+
5
+ ### Patch Changes
6
+
7
+ - [#16716](https://github.com/withastro/astro/pull/16716) [`04fdbb2`](https://github.com/withastro/astro/commit/04fdbb29978d5a00acfb956538e54256ae24b486) Thanks [@delucis](https://github.com/delucis)! - Drops support for versions of VS Code below 1.101.0 [May 2025]
8
+
3
9
  ## 2.16.14
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -25,7 +25,7 @@ A TypeScript plugin adding support for importing and exporting Astro components
25
25
 
26
26
  ## Configuration
27
27
 
28
- HTML, CSS and TypeScript settings can be configured through the `html`, `css` and `typescript` namespaces respectively. For example, HTML documentation on hover can be disabled using `'html.hover.documentation': false`. Formatting can be configured through [Prettier's different configuration methods](https://prettier.io/docs/en/configuration.html).
28
+ HTML and CSS settings can be configured through the `html` and `css` setting prefixes. TypeScript-related settings appear in the VS Code Settings UI under the **JavaScript and TypeScript (js/ts)** category in recent VS Code versions, but the actual JSON keys use the `typescript.*` namespace (for example, `"typescript.preferences.importModuleSpecifier": "non-relative"`). For example, HTML documentation on hover can be disabled using `"html.hover.documentation": false`. Formatting can be configured through [Prettier's different configuration methods](https://prettier.io/docs/en/configuration.html).
29
29
 
30
30
  ## Troubleshooting
31
31