astro-vscode 2.16.5 → 2.16.7
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 +2 -2
- package/CHANGELOG.md +14 -0
- package/dist/astro-ts-plugin-bundle/index.js +156 -0
- package/dist/node/client.js +22 -22
- package/dist/node/server.js +388 -435
- package/package.json +13 -12
- package/scripts/build.mjs +1 -3
- package/syntaxes/astro.tmLanguage.json +56 -5
- package/syntaxes/astro.tmLanguage.src.yaml +40 -5
- package/test/grammar/fixtures/text.astro.snap +3 -3
- package/test/grammar/fixtures/types-ending.astro +9 -0
- package/test/grammar/fixtures/types-ending.astro.snap +25 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
|
|
2
|
-
> astro-vscode@2.16.
|
|
2
|
+
> astro-vscode@2.16.7 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.16.
|
|
6
|
+
> astro-vscode@2.16.7 prebuild /home/runner/work/astro/astro/packages/language-tools/vscode
|
|
7
7
|
> cd ../ts-plugin && pnpm build
|
|
8
8
|
|
|
9
9
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# astro-vscode
|
|
2
2
|
|
|
3
|
+
## 2.16.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#15131](https://github.com/withastro/astro/pull/15131) [`d40ff7d`](https://github.com/withastro/astro/commit/d40ff7d8570f30c82402d8e2b01d4da890e3e771) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes extension asking for the wrong version of VS Code
|
|
8
|
+
|
|
9
|
+
## 2.16.6
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#15083](https://github.com/withastro/astro/pull/15083) [`241bb31`](https://github.com/withastro/astro/commit/241bb31d4d91cb41f984b0e46cd43d13a622414a) Thanks [@fkatsuhiro](https://github.com/fkatsuhiro)! - Fix "Find All References" and other TypeScript features by ensuring the plugin bundle is correctly included
|
|
14
|
+
|
|
15
|
+
- [#15109](https://github.com/withastro/astro/pull/15109) [`e062101`](https://github.com/withastro/astro/commit/e062101b3c7ca14502a53c65ee7a85070faa1e9f) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fixes syntax highlighting sometimes not working when the frontmatter or script tags ended with certain TypeScript constructs
|
|
16
|
+
|
|
3
17
|
## 2.16.5
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|