astro-vscode 0.8.6 → 0.8.9
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 +21 -0
- package/README.md +19 -0
- package/package.json +7 -8
- package/readme.md +0 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# astro-vscode
|
|
2
2
|
|
|
3
|
+
## 0.8.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [d0485a2]
|
|
8
|
+
- @astrojs/language-server@0.8.9
|
|
9
|
+
|
|
10
|
+
## 0.8.8
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [526d5c7]
|
|
15
|
+
- @astrojs/language-server@0.8.8
|
|
16
|
+
|
|
17
|
+
## 0.8.7
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [897ab35]
|
|
22
|
+
- @astrojs/language-server@0.8.7
|
|
23
|
+
|
|
3
24
|
## 0.8.6
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Astro support for Visual Studio Code
|
|
2
|
+
|
|
3
|
+
> 🧑🚀 Not sure what Astro is? See our website at [astro.build](https://astro.build)!
|
|
4
|
+
|
|
5
|
+
Provides language support for `.astro` files. This extension is powered by the [Astro language server](https://github.com/withastro/language-tools/tree/main/packages/language-server)
|
|
6
|
+
|
|
7
|
+
## Features
|
|
8
|
+
|
|
9
|
+
* [Go to Definition](https://code.visualstudio.com/docs/editor/editingevolved#_go-to-definition)
|
|
10
|
+
* Code hover hints
|
|
11
|
+
* Code completion
|
|
12
|
+
* Function signatures
|
|
13
|
+
* Syntax highlighting
|
|
14
|
+
* Code folding
|
|
15
|
+
* Emmet
|
|
16
|
+
|
|
17
|
+
## Configuration
|
|
18
|
+
|
|
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__.
|
package/package.json
CHANGED
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
"color": "#FFBE2D",
|
|
9
9
|
"theme": "dark"
|
|
10
10
|
},
|
|
11
|
-
"version": "0.8.
|
|
12
|
-
"author": "
|
|
11
|
+
"version": "0.8.9",
|
|
12
|
+
"author": "withastro",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"publisher": "astro-build",
|
|
15
15
|
"scripts": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"onLanguage:astro"
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@astrojs/language-server": "0.8.
|
|
27
|
+
"@astrojs/language-server": "0.8.9",
|
|
28
28
|
"@astrojs/ts-plugin": "0.1.1",
|
|
29
29
|
"vscode-emmet-helper": "2.1.2",
|
|
30
30
|
"vscode-html-languageservice": "^3.0.3",
|
|
@@ -32,8 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@types/vscode": "^1.52.0",
|
|
35
|
-
"astro-scripts": "file:../../scripts"
|
|
36
|
-
"execa": "^5.0.0"
|
|
35
|
+
"astro-scripts": "file:../../scripts"
|
|
37
36
|
},
|
|
38
37
|
"main": "./dist/index.js",
|
|
39
38
|
"browser": "./dist/index.js",
|
|
@@ -44,8 +43,8 @@
|
|
|
44
43
|
],
|
|
45
44
|
"repository": {
|
|
46
45
|
"type": "git",
|
|
47
|
-
"
|
|
48
|
-
"
|
|
46
|
+
"url": "https://github.com/withastro/language-tools.git",
|
|
47
|
+
"directory": "packages/vscode"
|
|
49
48
|
},
|
|
50
49
|
"contributes": {
|
|
51
50
|
"typescriptServerPlugins": [
|
|
@@ -247,4 +246,4 @@
|
|
|
247
246
|
}
|
|
248
247
|
]
|
|
249
248
|
}
|
|
250
|
-
}
|
|
249
|
+
}
|
package/readme.md
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
# Astro VSCode extension
|
|
2
|
-
|
|
3
|
-
This extension provides language support for `.astro` files.
|
|
4
|
-
|
|
5
|
-
## Settings
|
|
6
|
-
|
|
7
|
-
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__.
|