astro-vscode 0.13.2 → 0.14.0

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 CHANGED
@@ -1,5 +1,31 @@
1
1
  # astro-vscode
2
2
 
3
+ ## 0.14.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [9118c46]
8
+ - Updated dependencies [9ea5b97]
9
+ - Updated dependencies [dbf624a]
10
+ - @astrojs/language-server@0.14.0
11
+
12
+ ## 0.13.4
13
+
14
+ ### Patch Changes
15
+
16
+ - 74c9961: Fixed Astro syntax to detect `<Markdown />` component correctly
17
+ - Updated dependencies [5874655]
18
+ - @astrojs/language-server@0.13.4
19
+
20
+ ## 0.13.3
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies [1fb21ff]
25
+ - Updated dependencies [99d7536]
26
+ - Updated dependencies [b363c00]
27
+ - @astrojs/language-server@0.13.3
28
+
3
29
  ## 0.13.2
4
30
 
5
31
  ### Patch Changes
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "color": "#FFBE2D",
9
9
  "theme": "dark"
10
10
  },
11
- "version": "0.13.2",
11
+ "version": "0.14.0",
12
12
  "author": "withastro",
13
13
  "license": "MIT",
14
14
  "publisher": "astro-build",
@@ -25,7 +25,7 @@
25
25
  "onLanguage:astro"
26
26
  ],
27
27
  "dependencies": {
28
- "@astrojs/language-server": "0.13.2",
28
+ "@astrojs/language-server": "0.14.0",
29
29
  "@astrojs/ts-plugin": "0.2.1",
30
30
  "vscode-languageclient": "~7.0.0"
31
31
  },
@@ -465,34 +465,38 @@
465
465
  ]
466
466
  },
467
467
  "astro:markdown": {
468
- "begin": "(<)(Markdown)(>)",
468
+ "begin": "(<)(Markdown)",
469
+ "end": "(</)(Markdown)\\s*(>)|(/>)",
469
470
  "beginCaptures": {
470
471
  "1": {
471
- "name": "punctuation.definition.tag.begin.html"
472
+ "name": "punctuation.definition.tag.begin.astro"
472
473
  },
473
474
  "2": {
474
- "name": "entity.name.tag.html"
475
- },
476
- "3": {
477
- "name": "punctuation.definition.tag.end.html"
475
+ "name": "entity.name.tag.astro support.class.component.astro"
478
476
  }
479
477
  },
480
- "end": "(</)(Markdown)(>)",
481
478
  "endCaptures": {
482
479
  "1": {
483
- "name": "punctuation.definition.tag.begin.html"
480
+ "name": "punctuation.definition.tag.begin.astro"
484
481
  },
485
482
  "2": {
486
- "name": "entity.name.tag.html"
483
+ "name": "entity.name.tag.astro support.class.component.astro"
487
484
  },
488
485
  "3": {
489
- "name": "punctuation.definition.tag.end.html"
486
+ "name": "punctuation.definition.tag.end.astro"
487
+ },
488
+ "4": {
489
+ "name": "punctuation.definition.tag.end.astro"
490
490
  }
491
491
  },
492
492
  "patterns": [
493
493
  {
494
- "include": "text.html.markdown"
495
- }
494
+ "begin": "(?<=>)(?!</)",
495
+ "end": "(?=</)",
496
+ "contentName": "text.html.markdown",
497
+ "patterns": [{ "include": "text.html.markdown" }]
498
+ },
499
+ { "include": "#html:tag-attributes" }
496
500
  ]
497
501
  },
498
502
  "frontmatter": {