@astrojs/compiler 0.6.1 → 0.7.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,34 @@
1
1
  # @astrojs/compiler
2
2
 
3
+ ## 0.7.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 899e48d: Fix issue with active formatting elements by marking expressions as unique scopes
8
+
9
+ ## 0.7.1
10
+
11
+ ### Patch Changes
12
+
13
+ - fa039dd: Fix tokenization of attribute expression containing the solidus (`/`) character
14
+ - e365c3c: Fix bug with expressions inside of <table> elements (without reverting a previous fix to expressions inside of <a> elements)
15
+ - 7c5889f: Fix bug with `@keyframes` scoping
16
+ - df74ab3: Fix bug where named grid columns (like `[content-start]`) would be scoped, producing invalid CSS
17
+ - abe37ca: Fix handling of components and expressions inside of `<noscript>`
18
+ - 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.
19
+
20
+ ## 0.7.0
21
+
22
+ ### Minor Changes
23
+
24
+ - 43cbac3: Adds metadata on hydration directives used by the component
25
+
26
+ ## 0.6.2
27
+
28
+ ### Patch Changes
29
+
30
+ - e785310: Fix issue with import assertions creating additional imports
31
+
3
32
  ## 0.6.1
4
33
 
5
34
  ### 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.6.1",
8
+ "version": "0.7.2",
9
9
  "scripts": {
10
10
  "build": "tsc -p ."
11
11
  },
package/shared/types.d.ts CHANGED
@@ -6,6 +6,7 @@ export interface TransformOptions {
6
6
  internalURL?: string;
7
7
  site?: string;
8
8
  sourcefile?: string;
9
+ pathname?: string;
9
10
  sourcemap?: boolean | 'inline' | 'external' | 'both';
10
11
  as?: 'document' | 'fragment';
11
12
  projectRoot?: string;