astro-vscode 0.22.0 → 0.23.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/package.json +10 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # astro-vscode
2
2
 
3
+ ## 0.23.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [b13fb51]
8
+ - @astrojs/language-server@0.23.2
9
+
10
+ ## 0.23.1
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [422376e]
15
+ - @astrojs/language-server@0.23.1
16
+
17
+ ## 0.23.0
18
+
19
+ ### Patch Changes
20
+
21
+ - 56c14f8: Fix a regression with how VS Code handle unbalanced brackets since 1.70
22
+ - Updated dependencies [b6c95f2]
23
+ - Updated dependencies [1dcef68]
24
+ - @astrojs/language-server@0.23.0
25
+
3
26
  ## 0.22.0
4
27
 
5
28
  ### Patch Changes
package/package.json CHANGED
@@ -23,7 +23,7 @@
23
23
  "color": "#FFBE2D",
24
24
  "theme": "dark"
25
25
  },
26
- "version": "0.22.0",
26
+ "version": "0.23.2",
27
27
  "author": "withastro",
28
28
  "license": "MIT",
29
29
  "publisher": "astro-build",
@@ -44,7 +44,7 @@
44
44
  "workspaceContains:astro.config.*"
45
45
  ],
46
46
  "dependencies": {
47
- "@astrojs/language-server": "0.22.0",
47
+ "@astrojs/language-server": "0.23.2",
48
48
  "@astrojs/ts-plugin": "0.2.1",
49
49
  "vscode-languageclient": "^8.0.1"
50
50
  },
@@ -295,7 +295,14 @@
295
295
  "source.ts": "typescript",
296
296
  "source.json": "json",
297
297
  "source.tsx": "typescriptreact"
298
- }
298
+ },
299
+ "unbalancedBracketScopes": [
300
+ "keyword.operator.relational",
301
+ "storage.type.function.arrow",
302
+ "keyword.operator.bitwise.shift",
303
+ "meta.brace.angle",
304
+ "punctuation.definition.tag"
305
+ ]
299
306
  },
300
307
  {
301
308
  "scopeName": "text.html.markdown.astro",