astro-vscode 2.16.11 → 2.16.13

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,9 +1,9 @@
1
1
 
2
- > astro-vscode@2.16.11 build /home/runner/work/astro/astro/packages/language-tools/vscode
2
+ > astro-vscode@2.16.13 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.11 prebuild /home/runner/work/astro/astro/packages/language-tools/vscode
6
+ > astro-vscode@2.16.13 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,21 @@
1
1
  # astro-vscode
2
2
 
3
+ ## 2.16.13
4
+
5
+ ### Patch Changes
6
+
7
+ - [#15943](https://github.com/withastro/astro/pull/15943) [`1a627e2`](https://github.com/withastro/astro/commit/1a627e25267f8525e11237a1422c228f1bfc2ef1) Thanks [@alexanderdombroski](https://github.com/alexanderdombroski)! - Improves astro file templates to be scoped to `.astro` file extensions
8
+
9
+ - [#15927](https://github.com/withastro/astro/pull/15927) [`421e8de`](https://github.com/withastro/astro/commit/421e8de6e9e13ca45864c2d3deed7e98e3ee6138) Thanks [@FelmonFekadu](https://github.com/FelmonFekadu)! - Fixes completions sometimes not working inside the `href` attribute
10
+
11
+ - [#15602](https://github.com/withastro/astro/pull/15602) [`7832dfe`](https://github.com/withastro/astro/commit/7832dfef25dffe55a9dcb1913d03375ecac9ad42) Thanks [@0xRozier](https://github.com/0xRozier)! - Fix syntax highlighting for script and style tags inside expressions (e.g. ternaries and logical operators)
12
+
13
+ ## 2.16.12
14
+
15
+ ### Patch Changes
16
+
17
+ - [#15895](https://github.com/withastro/astro/pull/15895) [`7b4b254`](https://github.com/withastro/astro/commit/7b4b2549437eb099c5e96025dcf8d24ea56f30d0) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Updates Volar services to 0.0.70. This updates notably mean that the transitive dependency yaml-language-server no longer depends on a vulnerable version of lodash, causing warnings to show when installing the language server.
18
+
3
19
  ## 2.16.11
4
20
 
5
21
  ### Patch Changes
package/README.md CHANGED
@@ -18,6 +18,7 @@ Provides language support for `.astro` files. This extension is powered by the [
18
18
  - [Go to Definition](https://code.visualstudio.com/docs/editor/editingevolved#_go-to-definition), [Go to Type Definition](https://code.visualstudio.com/docs/editor/editingevolved#_go-to-type-definition), [Go to Implementation](https://code.visualstudio.com/docs/editor/editingevolved#_go-to-implementation) etc
19
19
  - [Inlay hints](https://code.visualstudio.com/docs/editor/editingevolved#_inlay-hints)
20
20
  - [Code folding](https://code.visualstudio.com/docs/editor/codebasics#_folding)
21
+ - [Snippets & File Templates](https://code.visualstudio.com/docs/editing/userdefinedsnippets)
21
22
  - and more!
22
23
 
23
24
  A TypeScript plugin adding support for importing and exporting Astro components inside JavaScript and TypeScript files is also included.