@astrojs/compiler 0.27.0 → 0.27.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 CHANGED
@@ -1,5 +1,20 @@
1
1
  # @astrojs/compiler
2
2
 
3
+ ## 0.27.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 959f96b: Fix "missing sourcemap" issue
8
+ - 94f6f3e: Fix edge case with multi-line comment usage
9
+ - 85a654a: Fix `parse` causing a compiler panic when a component with a client directive was imported but didn't have a matching import
10
+ - 5e32cbe: Improvements to TSX output
11
+
12
+ ## 0.27.1
13
+
14
+ ### Patch Changes
15
+
16
+ - cc9f174: fixed regression caused by #546
17
+
3
18
  ## 0.27.0
4
19
 
5
20
  ### Minor Changes
package/README.md CHANGED
@@ -60,7 +60,7 @@ walk(result.ast, (node) => {
60
60
 
61
61
  ### VSCode / CodeSpaces
62
62
 
63
- A `devcontianer` configuration is available for use with VSCode's [Remote Development extension pack](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.vscode-remote-extensionpack) and GitHub CodeSpaces.
63
+ A `devcontainer` configuration is available for use with VSCode's [Remote Development extension pack](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.vscode-remote-extensionpack) and GitHub CodeSpaces.
64
64
 
65
65
  ## Contributing
66
66
 
package/astro.wasm CHANGED
Binary file
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "type": "module",
6
6
  "bugs": "https://github.com/withastro/compiler/issues",
7
7
  "homepage": "https://astro.build",
8
- "version": "0.27.0",
8
+ "version": "0.27.2",
9
9
  "main": "./node/index.js",
10
10
  "types": "./node",
11
11
  "repository": {
@@ -27,13 +27,10 @@
27
27
  "./types": "./types.d.ts"
28
28
  },
29
29
  "devDependencies": {
30
- "@jridgewell/trace-mapping": "^0.3.14",
31
- "@types/node": "^16.4.12",
30
+ "@jridgewell/trace-mapping": "^0.3.16",
31
+ "@types/node": "^16.11.64",
32
32
  "@types/sass": "^1.43.1",
33
- "typescript": "^4.4.3"
34
- },
35
- "volta": {
36
- "node": "16.6.2"
33
+ "typescript": "~4.8.4"
37
34
  },
38
35
  "scripts": {
39
36
  "build": "tsc -p ."