astro-vscode 0.8.10 → 0.9.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.
- package/CHANGELOG.md +28 -0
- package/README.md +8 -0
- package/package.json +3 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# astro-vscode
|
|
2
2
|
|
|
3
|
+
## 0.9.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 91404d1: Enable publishing to OpenVSX
|
|
8
|
+
- Updated dependencies [91404d1]
|
|
9
|
+
- @astrojs/language-server@0.9.2
|
|
10
|
+
|
|
11
|
+
## 0.9.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 7dc85cc: Add support for Emmet inside components, upgrade Emmet version
|
|
16
|
+
- Updated dependencies [7dc85cc]
|
|
17
|
+
- @astrojs/language-server@0.9.1
|
|
18
|
+
|
|
19
|
+
## 0.9.0
|
|
20
|
+
|
|
21
|
+
### Minor Changes
|
|
22
|
+
|
|
23
|
+
- 6b6b47a: Remove internal astro.d.ts files, instead prefer the one provided by Astro itself
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies [6b6b47a]
|
|
28
|
+
- @astrojs/language-server@0.9.0
|
|
29
|
+
- @astrojs/ts-plugin@0.2.0
|
|
30
|
+
|
|
3
31
|
## 0.8.10
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -17,3 +17,11 @@ Provides language support for `.astro` files. This extension is powered by the [
|
|
|
17
17
|
## Configuration
|
|
18
18
|
|
|
19
19
|
You can disable most features in the extension by going to your workspace settings page. Under __Extension__ find Astro configuration and uncheck the feature you do not want. For example to disable error messages unselect __TypeScript > Diagnostics: Enable__.
|
|
20
|
+
|
|
21
|
+
## Troubleshooting
|
|
22
|
+
|
|
23
|
+
### Cannot find name "Astro" or Property 'env' does not exist on type 'ImportMeta' or Cannot find name "Fragment"
|
|
24
|
+
|
|
25
|
+
Starting from 0.23.5 version of Astro and the 0.9 version of this extension, typechecking is now done using types that are provided by Astro itself. Therefore, to benefit from those included types, you need to use any version of Astro that is higher or equal to 0.23.5
|
|
26
|
+
|
|
27
|
+
If you can't upgrade to a newer version of Astro for the moment, you can downgrade the extension to the latest pre 0.9.0 version by right clicking the Astro extension in the sidebar and pressing "Install another version"
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"color": "#FFBE2D",
|
|
9
9
|
"theme": "dark"
|
|
10
10
|
},
|
|
11
|
-
"version": "0.
|
|
11
|
+
"version": "0.9.2",
|
|
12
12
|
"author": "withastro",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"publisher": "astro-build",
|
|
@@ -24,10 +24,8 @@
|
|
|
24
24
|
"onLanguage:astro"
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@astrojs/language-server": "0.
|
|
28
|
-
"@astrojs/ts-plugin": "0.
|
|
29
|
-
"vscode-emmet-helper": "2.1.2",
|
|
30
|
-
"vscode-html-languageservice": "^3.0.3",
|
|
27
|
+
"@astrojs/language-server": "0.9.2",
|
|
28
|
+
"@astrojs/ts-plugin": "0.2.0",
|
|
31
29
|
"vscode-languageclient": "~7.0.0"
|
|
32
30
|
},
|
|
33
31
|
"devDependencies": {
|