@astrojs/language-server 0.8.4 → 0.8.5

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,11 @@
1
1
  # @astrojs/language-server
2
2
 
3
+ ## 0.8.5
4
+
5
+ ### Patch Changes
6
+
7
+ - f1f3091: Fix commenting, namespaced elements, and Fragment typings
8
+
3
9
  ## 0.8.4
4
10
 
5
11
  ### Patch Changes
package/astro.d.ts CHANGED
@@ -51,6 +51,8 @@ interface Astro {
51
51
  slots: Record<string, true | undefined>;
52
52
  }
53
53
 
54
- // @ts-ignore
55
- declare const Astro: Astro;
56
- declare const Fragment: Fragment;
54
+ declare var Astro: Astro;
55
+ declare var Fragment: string;
56
+
57
+ void Astro;
58
+ void Fragment;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astrojs/language-server",
3
- "version": "0.8.4",
3
+ "version": "0.8.5",
4
4
  "author": "Skypack",
5
5
  "license": "MIT",
6
6
  "type": "commonjs",