astro-vscode 0.16.1 → 0.18.1
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 +32 -0
- package/package.json +12 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# astro-vscode
|
|
2
2
|
|
|
3
|
+
## 0.18.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 666739a: Revert update to latest LSP and inlay hints support
|
|
8
|
+
- Updated dependencies [666739a]
|
|
9
|
+
- @astrojs/language-server@0.18.1
|
|
10
|
+
|
|
11
|
+
## 0.18.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- d3c6fd8: Add support for formatting
|
|
16
|
+
- 09e1163: Updated language server to latest version of LSP, added support for Inlay Hints
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [d3c6fd8]
|
|
21
|
+
- Updated dependencies [09e1163]
|
|
22
|
+
- Updated dependencies [fcaba8e]
|
|
23
|
+
- Updated dependencies [4138005]
|
|
24
|
+
- Updated dependencies [76ff46a]
|
|
25
|
+
- @astrojs/language-server@0.18.0
|
|
26
|
+
|
|
27
|
+
## 0.17.0
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- Updated dependencies [3ad0f65]
|
|
32
|
+
- Updated dependencies [2e9da14]
|
|
33
|
+
- @astrojs/language-server@0.17.0
|
|
34
|
+
|
|
3
35
|
## 0.16.1
|
|
4
36
|
|
|
5
37
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"color": "#FFBE2D",
|
|
9
9
|
"theme": "dark"
|
|
10
10
|
},
|
|
11
|
-
"version": "0.
|
|
11
|
+
"version": "0.18.1",
|
|
12
12
|
"author": "withastro",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"publisher": "astro-build",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"workspaceContains:astro.config.*"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@astrojs/language-server": "0.
|
|
29
|
+
"@astrojs/language-server": "0.18.1",
|
|
30
30
|
"@astrojs/ts-plugin": "0.2.1",
|
|
31
31
|
"vscode-languageclient": "~7.0.0"
|
|
32
32
|
},
|
|
@@ -208,6 +208,16 @@
|
|
|
208
208
|
"default": true,
|
|
209
209
|
"title": "CSS: Symbols in Outline",
|
|
210
210
|
"description": "Enable document symbols for CSS"
|
|
211
|
+
},
|
|
212
|
+
"astro.format.indentFrontmatter": {
|
|
213
|
+
"type": "boolean",
|
|
214
|
+
"default": true,
|
|
215
|
+
"title": "Formatting: Indent the frontmatter by one level of indentation"
|
|
216
|
+
},
|
|
217
|
+
"astro.format.newLineAfterFrontmatter": {
|
|
218
|
+
"type": "boolean",
|
|
219
|
+
"default": true,
|
|
220
|
+
"title": "Formatting: Add a line return between the frontmatter and the template"
|
|
211
221
|
}
|
|
212
222
|
}
|
|
213
223
|
},
|