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.
- package/.turbo/turbo-build.log +1 -12
- package/.vscode-test.mjs +14 -0
- package/CHANGELOG.md +6 -0
- package/README.md +1 -1
- package/dist/node/server.js +292 -288
- package/package.json +9 -8
- package/scripts/build.mjs +2 -2
- package/test/{extension.test.js → extension.test.mts} +3 -2
- package/test/grammar/test.mjs +1 -1
- package/tsconfig.build.json +7 -0
- package/tsconfig.json +3 -8
- package/tsconfig.test.json +5 -0
- package/.vscode-test.js +0 -13
package/.turbo/turbo-build.log
CHANGED
|
@@ -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
|
+
[2m$ tsc -b && node scripts/build.mjs -- --minify[22m
|
package/.vscode-test.mjs
ADDED
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
|
|
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
|
|