astro-vscode 0.8.8 → 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 CHANGED
@@ -1,5 +1,12 @@
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
+
3
10
  ## 0.8.8
4
11
 
5
12
  ### 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.8",
12
- "author": "Astro",
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.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",
@@ -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__.