@astrojs/compiler 0.7.0 → 0.7.4

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,35 @@
1
1
  # @astrojs/compiler
2
2
 
3
+ ## 0.7.4
4
+
5
+ ### Patch Changes
6
+
7
+ - afc1e82: Remove console log (sorry!)
8
+
9
+ ## 0.7.3
10
+
11
+ ### Patch Changes
12
+
13
+ - cc24069: Fix some edge cases with expressions inside of `<table>` elements
14
+ - 086275c: Fix edge case with textarea inside expression
15
+
16
+ ## 0.7.2
17
+
18
+ ### Patch Changes
19
+
20
+ - 899e48d: Fix issue with active formatting elements by marking expressions as unique scopes
21
+
22
+ ## 0.7.1
23
+
24
+ ### Patch Changes
25
+
26
+ - fa039dd: Fix tokenization of attribute expression containing the solidus (`/`) character
27
+ - e365c3c: Fix bug with expressions inside of <table> elements (without reverting a previous fix to expressions inside of <a> elements)
28
+ - 7c5889f: Fix bug with `@keyframes` scoping
29
+ - df74ab3: Fix bug where named grid columns (like `[content-start]`) would be scoped, producing invalid CSS
30
+ - abe37ca: Fix handling of components and expressions inside of `<noscript>`
31
+ - 8961cf4: Fix a logical error with expression tokenization when using nested functions. Previously, only the first brace pair would be respected and following pairs would be treated as expression boundaries.
32
+
3
33
  ## 0.7.0
4
34
 
5
35
  ### Minor 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.7.0",
8
+ "version": "0.7.4",
9
9
  "scripts": {
10
10
  "build": "tsc -p ."
11
11
  },