astro-vscode 2.16.16 → 2.16.17
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/CHANGELOG.md +6 -0
- package/dist/node/client.js +18 -18
- package/dist/node/server.js +284 -284
- package/languages/astro.code-snippets +48 -48
- package/package.json +4 -4
- package/syntaxes/astro.tmLanguage.json +84 -7
- package/syntaxes/astro.tmLanguage.src.yaml +56 -7
- package/test/grammar/dummy/css.tmLanguage-dummy.json +19 -2
- package/test/grammar/fixtures/style/at-property.astro +27 -0
- package/test/grammar/fixtures/style/at-property.astro.snap +91 -0
- package/test/grammar/fixtures/style/expression.astro.snap +23 -7
- package/test/grammar/fixtures/style/style.astro.snap +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# astro-vscode
|
|
2
2
|
|
|
3
|
+
## 2.16.17
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#17254](https://github.com/withastro/astro/pull/17254) [`2cffae1`](https://github.com/withastro/astro/commit/2cffae14fcdd4fca649eae1a9d82a1863c8991bd) Thanks [@astrobot-houston](https://github.com/astrobot-houston)! - Fixes syntax highlighting breaking when using CSS `@property` at-rules inside `<style>` blocks. The `</style>` closing tag and all subsequent blocks are now correctly recognized regardless of CSS content.
|
|
8
|
+
|
|
3
9
|
## 2.16.16
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|