@astrojs/compiler 0.7.0 → 0.7.1

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,16 @@
1
1
  # @astrojs/compiler
2
2
 
3
+ ## 0.7.1
4
+
5
+ ### Patch Changes
6
+
7
+ - fa039dd: Fix tokenization of attribute expression containing the solidus (`/`) character
8
+ - e365c3c: Fix bug with expressions inside of <table> elements (without reverting a previous fix to expressions inside of <a> elements)
9
+ - 7c5889f: Fix bug with `@keyframes` scoping
10
+ - df74ab3: Fix bug where named grid columns (like `[content-start]`) would be scoped, producing invalid CSS
11
+ - abe37ca: Fix handling of components and expressions inside of `<noscript>`
12
+ - 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.
13
+
3
14
  ## 0.7.0
4
15
 
5
16
  ### 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.1",
9
9
  "scripts": {
10
10
  "build": "tsc -p ."
11
11
  },