@astrojs/compiler 0.12.0-next.6 → 0.12.0-next.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 +19 -0
- package/astro.wasm +0 -0
- package/package.json +6 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @astrojs/compiler
|
|
2
2
|
|
|
3
|
+
## 0.12.0-next.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 95ec808: Fix <slot> behavior inside of head
|
|
8
|
+
- 95ec808: Remove usage of `escapeHTML` util
|
|
9
|
+
|
|
10
|
+
## 0.12.0-next.8
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 4497628: Improve head injection behavior
|
|
15
|
+
|
|
16
|
+
## 0.12.0-next.7
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- e26b9d6: Fix edge case with Fragment parsing in head, add `fragment` node to AST output
|
|
21
|
+
|
|
3
22
|
## 0.12.0-next.6
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
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.12.0-next.
|
|
8
|
+
"version": "0.12.0-next.9",
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "tsc -p ."
|
|
11
11
|
},
|
|
@@ -30,10 +30,13 @@
|
|
|
30
30
|
"./types": "./types.d.ts"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"
|
|
33
|
+
"tsm": "^2.2.1",
|
|
34
|
+
"typescript": "^4.3.5",
|
|
35
|
+
"uvu": "^0.5.3"
|
|
34
36
|
},
|
|
35
37
|
"devDependencies": {
|
|
36
|
-
"@types/node": "^16.4.12"
|
|
38
|
+
"@types/node": "^16.4.12",
|
|
39
|
+
"@types/sass": "^1.43.1"
|
|
37
40
|
},
|
|
38
41
|
"volta": {
|
|
39
42
|
"node": "16.6.2"
|