diff options
Diffstat (limited to 'packages/astro-parser')
-rw-r--r-- | packages/astro-parser/CHANGELOG.md | 11 | ||||
-rw-r--r-- | packages/astro-parser/package.json | 2 |
2 files changed, 12 insertions, 1 deletions
diff --git a/packages/astro-parser/CHANGELOG.md b/packages/astro-parser/CHANGELOG.md index 7ff2508d7..76a8daaa4 100644 --- a/packages/astro-parser/CHANGELOG.md +++ b/packages/astro-parser/CHANGELOG.md @@ -1,5 +1,16 @@ # @astrojs/parser +## 0.18.0 + +### Patch Changes + +- a7e6666: compile javascript to target Node v12.x +- 294a656: Adds support for global style blocks via `<style global>` + + Be careful with this escape hatch! This is best reserved for uses like importing styling libraries like Tailwind, or changing global CSS variables. + +- b85e68a: Fixes case where custom elements are not handled within JSX expressions + ## 0.18.0-next.5 ### Patch Changes diff --git a/packages/astro-parser/package.json b/packages/astro-parser/package.json index 4b08ff4b4..15ada0d89 100644 --- a/packages/astro-parser/package.json +++ b/packages/astro-parser/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/parser", - "version": "0.18.0-next.5", + "version": "0.18.0", "author": "Skypack", "license": "MIT", "type": "commonjs", |