diff options
39 files changed, 101 insertions, 104 deletions
diff --git a/.changeset/cool-walls-burn.md b/.changeset/cool-walls-burn.md deleted file mode 100644 index 4f3bc4ec8..000000000 --- a/.changeset/cool-walls-burn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes rendering of the `popover` attribute when it has a boolean value diff --git a/.changeset/open-tables-sit.md b/.changeset/open-tables-sit.md deleted file mode 100644 index a5654e9e0..000000000 --- a/.changeset/open-tables-sit.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -'astro': patch ---- - -Allows disabling default styles for responsive images - -This change adds a new `image.experimentalDefaultStyles` option that allows you to disable the default styles applied to responsive images. - -When using experimental responsive images, Astro applies default styles to ensure the images resize correctly. In most cases this is what you want – and they are applied with low specificity so your own styles override them. However in some cases you may want to disable these default styles entirely. This is particularly useful when using Tailwind 4, because it uses CSS cascade layers to apply styles, making it difficult to override the default styles. - -`image.experimentalDefaultStyles` is a boolean option that defaults to `true`, so you can change it in your Astro config file like this: - -```js -export default { - image: { - experimentalDefaultStyles: false, - }, - experimental: { - responsiveImages: true, - }, -}; -``` diff --git a/.changeset/selfish-bulldogs-jog.md b/.changeset/selfish-bulldogs-jog.md deleted file mode 100644 index b6693ef59..000000000 --- a/.changeset/selfish-bulldogs-jog.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'create-astro': patch ---- - -Fixes an issue where installing Astro beta using `create-astro` displays the wrong Astro version in the installation messages. diff --git a/.changeset/slick-pillows-smash.md b/.changeset/slick-pillows-smash.md deleted file mode 100644 index 1036aac30..000000000 --- a/.changeset/slick-pillows-smash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fixes the warning shown when client directives are used on Astro components diff --git a/.changeset/smooth-houses-own.md b/.changeset/smooth-houses-own.md deleted file mode 100644 index 98c38df2a..000000000 --- a/.changeset/smooth-houses-own.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Allows using server islands in mdx files diff --git a/.changeset/tidy-mails-cough.md b/.changeset/tidy-mails-cough.md deleted file mode 100644 index 490d2fa88..000000000 --- a/.changeset/tidy-mails-cough.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Export type `AstroSession` to allow use in explicitly typed safe code. diff --git a/.changeset/wide-dodos-mate.md b/.changeset/wide-dodos-mate.md deleted file mode 100644 index 5273b8e26..000000000 --- a/.changeset/wide-dodos-mate.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/db': minor ---- - -Upgraded drizzle-orm to latest v0.42.0 diff --git a/examples/basics/package.json b/examples/basics/package.json index 0444d7e32..4d6c8d5d4 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.8.0" + "astro": "^5.8.1" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index 037911508..b42d2ff7b 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -13,6 +13,6 @@ "@astrojs/mdx": "^4.3.0", "@astrojs/rss": "^4.0.11", "@astrojs/sitemap": "^3.4.0", - "astro": "^5.8.0" + "astro": "^5.8.1" } } diff --git a/examples/component/package.json b/examples/component/package.json index a906cf641..3e3bca826 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^5.8.0" + "astro": "^5.8.1" }, "peerDependencies": { "astro": "^4.0.0 || ^5.0.0" diff --git a/examples/container-with-vitest/package.json b/examples/container-with-vitest/package.json index 5cfcf33e5..97fd5463c 100644 --- a/examples/container-with-vitest/package.json +++ b/examples/container-with-vitest/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/react": "^4.3.0", - "astro": "^5.8.0", + "astro": "^5.8.1", "react": "^18.3.1", "react-dom": "^18.3.1", "vitest": "^3.1.1" diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index 763c19c62..eae65038c 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -13,6 +13,6 @@ "@astrojs/alpinejs": "^0.4.8", "@types/alpinejs": "^3.13.11", "alpinejs": "^3.14.9", - "astro": "^5.8.0" + "astro": "^5.8.1" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index a55b151e3..85bfe10a1 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -17,7 +17,7 @@ "@astrojs/vue": "^5.1.0", "@types/react": "^18.3.20", "@types/react-dom": "^18.3.6", - "astro": "^5.8.0", + "astro": "^5.8.1", "preact": "^10.26.5", "react": "^18.3.1", "react-dom": "^18.3.1", diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 4eb8400c0..f53b4d3ad 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -12,7 +12,7 @@ "dependencies": { "@astrojs/preact": "^4.1.0", "@preact/signals": "^2.0.3", - "astro": "^5.8.0", + "astro": "^5.8.1", "preact": "^10.26.5" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 7efb08bde..bb8ab3f98 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -13,7 +13,7 @@ "@astrojs/react": "^4.3.0", "@types/react": "^18.3.20", "@types/react-dom": "^18.3.6", - "astro": "^5.8.0", + "astro": "^5.8.1", "react": "^18.3.1", "react-dom": "^18.3.1" } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 380c371aa..d229302a1 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@astrojs/solid-js": "^5.1.0", - "astro": "^5.8.0", + "astro": "^5.8.1", "solid-js": "^1.9.5" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index c0f89dcf2..0622c85a7 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@astrojs/svelte": "^7.1.0", - "astro": "^5.8.0", + "astro": "^5.8.1", "svelte": "^5.25.7" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 4ac5804f0..31f3d33ba 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@astrojs/vue": "^5.1.0", - "astro": "^5.8.0", + "astro": "^5.8.1", "vue": "^3.5.13" } } diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json index c1f1ab6c5..d91b55114 100644 --- a/examples/hackernews/package.json +++ b/examples/hackernews/package.json @@ -11,6 +11,6 @@ }, "dependencies": { "@astrojs/node": "^9.2.2", - "astro": "^5.8.0" + "astro": "^5.8.1" } } diff --git a/examples/integration/package.json b/examples/integration/package.json index 06e74f314..91683dcf8 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^5.8.0" + "astro": "^5.8.1" }, "peerDependencies": { "astro": "^4.0.0" diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 85ccde931..d924411fe 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.8.0" + "astro": "^5.8.1" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index f062dcbec..326c7c634 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.8.0" + "astro": "^5.8.1" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 5149072e7..745b3972b 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -13,7 +13,7 @@ "dependencies": { "@astrojs/node": "^9.2.2", "@astrojs/svelte": "^7.1.0", - "astro": "^5.8.0", + "astro": "^5.8.1", "svelte": "^5.25.7" } } diff --git a/examples/starlog/package.json b/examples/starlog/package.json index 766341835..ed98fedd8 100644 --- a/examples/starlog/package.json +++ b/examples/starlog/package.json @@ -9,7 +9,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^5.8.0", + "astro": "^5.8.1", "sass": "^1.86.3", "sharp": "^0.33.3" } diff --git a/examples/toolbar-app/package.json b/examples/toolbar-app/package.json index 78424cb5f..19ed9b41a 100644 --- a/examples/toolbar-app/package.json +++ b/examples/toolbar-app/package.json @@ -16,6 +16,6 @@ }, "devDependencies": { "@types/node": "^18.17.8", - "astro": "^5.8.0" + "astro": "^5.8.1" } } diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json index 505b99893..f20c1ae86 100644 --- a/examples/with-markdoc/package.json +++ b/examples/with-markdoc/package.json @@ -11,6 +11,6 @@ }, "dependencies": { "@astrojs/markdoc": "^0.15.0", - "astro": "^5.8.0" + "astro": "^5.8.1" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index 7655eadad..b082974e8 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -12,7 +12,7 @@ "dependencies": { "@astrojs/mdx": "^4.3.0", "@astrojs/preact": "^4.1.0", - "astro": "^5.8.0", + "astro": "^5.8.1", "preact": "^10.26.5" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index de8422831..13e3ed2c8 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -12,7 +12,7 @@ "dependencies": { "@astrojs/preact": "^4.1.0", "@nanostores/preact": "^0.5.2", - "astro": "^5.8.0", + "astro": "^5.8.1", "nanostores": "^0.11.4", "preact": "^10.26.5" } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index b7b4611e2..ccd4badd0 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -13,7 +13,7 @@ "@astrojs/mdx": "^4.3.0", "@tailwindcss/vite": "^4.1.3", "@types/canvas-confetti": "^1.9.0", - "astro": "^5.8.0", + "astro": "^5.8.1", "canvas-confetti": "^1.9.3", "tailwindcss": "^4.1.3" } diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json index 518a94f6c..0ba46467c 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -11,7 +11,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^5.8.0", + "astro": "^5.8.1", "vitest": "^3.1.1" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index caede5cca..38fb75868 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,36 @@ # astro +## 5.8.1 + +### Patch Changes + +- [#13037](https://github.com/withastro/astro/pull/13037) [`de2fc9b`](https://github.com/withastro/astro/commit/de2fc9b3c406c21683b8a692fafa3cbc77ca552b) Thanks [@nanarino](https://github.com/nanarino)! - Fixes rendering of the `popover` attribute when it has a boolean value + +- [#13851](https://github.com/withastro/astro/pull/13851) [`45ae95a`](https://github.com/withastro/astro/commit/45ae95a507d5e83b5e38ce1b338c3202ab7e8d76) Thanks [@ascorbic](https://github.com/ascorbic)! - Allows disabling default styles for responsive images + + This change adds a new `image.experimentalDefaultStyles` option that allows you to disable the default styles applied to responsive images. + + When using experimental responsive images, Astro applies default styles to ensure the images resize correctly. In most cases this is what you want – and they are applied with low specificity so your own styles override them. However in some cases you may want to disable these default styles entirely. This is particularly useful when using Tailwind 4, because it uses CSS cascade layers to apply styles, making it difficult to override the default styles. + + `image.experimentalDefaultStyles` is a boolean option that defaults to `true`, so you can change it in your Astro config file like this: + + ```js + export default { + image: { + experimentalDefaultStyles: false, + }, + experimental: { + responsiveImages: true, + }, + }; + ``` + +- [#13858](https://github.com/withastro/astro/pull/13858) [`cb1a168`](https://github.com/withastro/astro/commit/cb1a1681c844737477670ac42bb051bf93fae0a3) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Fixes the warning shown when client directives are used on Astro components + +- [#12574](https://github.com/withastro/astro/pull/12574) [`da266d0`](https://github.com/withastro/astro/commit/da266d0578c1a603d6f57913c6fa8eefd61a354e) Thanks [@apatel369](https://github.com/apatel369)! - Allows using server islands in mdx files + +- [#13843](https://github.com/withastro/astro/pull/13843) [`fbcfa68`](https://github.com/withastro/astro/commit/fbcfa683d38f13378678c25b53cd789107752087) Thanks [@z1haze](https://github.com/z1haze)! - Export type `AstroSession` to allow use in explicitly typed safe code. + ## 5.8.0 ### Minor Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 304f5ba8b..6fc5bb43b 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "5.8.0", + "version": "5.8.1", "description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.", "type": "module", "author": "withastro", diff --git a/packages/create-astro/CHANGELOG.md b/packages/create-astro/CHANGELOG.md index 7a4a06933..9b307df4b 100644 --- a/packages/create-astro/CHANGELOG.md +++ b/packages/create-astro/CHANGELOG.md @@ -1,5 +1,11 @@ # create-astro +## 4.12.1 + +### Patch Changes + +- [#12529](https://github.com/withastro/astro/pull/12529) [`485c2f0`](https://github.com/withastro/astro/commit/485c2f0f1617a79ed997970c2cc439dde89e9be2) Thanks [@apatel369](https://github.com/apatel369)! - Fixes an issue where installing Astro beta using `create-astro` displays the wrong Astro version in the installation messages. + ## 4.12.0 ### Minor Changes diff --git a/packages/create-astro/package.json b/packages/create-astro/package.json index 84a2a5d8b..d9a583355 100644 --- a/packages/create-astro/package.json +++ b/packages/create-astro/package.json @@ -1,6 +1,6 @@ { "name": "create-astro", - "version": "4.12.0", + "version": "4.12.1", "type": "module", "author": "withastro", "license": "MIT", diff --git a/packages/db/CHANGELOG.md b/packages/db/CHANGELOG.md index 12453c0bb..ec8b1ece1 100644 --- a/packages/db/CHANGELOG.md +++ b/packages/db/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/db +## 0.15.0 + +### Minor Changes + +- [#13815](https://github.com/withastro/astro/pull/13815) [`03435f8`](https://github.com/withastro/astro/commit/03435f8269b91ce8973bc8ded8e8071481d39dda) Thanks [@jonaspm](https://github.com/jonaspm)! - Upgraded drizzle-orm to latest v0.42.0 + ## 0.14.14 ### Patch Changes diff --git a/packages/db/package.json b/packages/db/package.json index 8eb4e4019..5d0b25efd 100644 --- a/packages/db/package.json +++ b/packages/db/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/db", - "version": "0.14.14", + "version": "0.15.0", "description": "Add libSQL and Astro Studio support to your Astro site", "license": "MIT", "repository": { diff --git a/packages/integrations/web-vitals/CHANGELOG.md b/packages/integrations/web-vitals/CHANGELOG.md index c0ce5dd7b..3b65bbb0a 100644 --- a/packages/integrations/web-vitals/CHANGELOG.md +++ b/packages/integrations/web-vitals/CHANGELOG.md @@ -1,5 +1,12 @@ # @astrojs/web-vitals +## 4.0.0 + +### Patch Changes + +- Updated dependencies [[`03435f8`](https://github.com/withastro/astro/commit/03435f8269b91ce8973bc8ded8e8071481d39dda)]: + - @astrojs/db@0.15.0 + ## 3.0.2 ### Patch Changes diff --git a/packages/integrations/web-vitals/package.json b/packages/integrations/web-vitals/package.json index 03f4eff49..2ef176fb7 100644 --- a/packages/integrations/web-vitals/package.json +++ b/packages/integrations/web-vitals/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/web-vitals", "description": "Track your website’s performance with Astro DB", - "version": "3.0.2", + "version": "4.0.0", "type": "module", "author": "withastro", "license": "MIT", @@ -35,7 +35,7 @@ "web-vitals": "^4.2.4" }, "peerDependencies": { - "@astrojs/db": "^0.14.0" + "@astrojs/db": "^0.15.0" }, "devDependencies": { "@astrojs/db": "workspace:*", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9255b16d7..0f719cd05 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -145,7 +145,7 @@ importers: examples/basics: dependencies: astro: - specifier: ^5.8.0 + specifier: ^5.8.1 version: link:../../packages/astro examples/blog: @@ -160,13 +160,13 @@ importers: specifier: ^3.4.0 version: link:../../packages/integrations/sitemap astro: - specifier: ^5.8.0 + specifier: ^5.8.1 version: link:../../packages/astro examples/component: devDependencies: astro: - specifier: ^5.8.0 + specifier: ^5.8.1 version: link:../../packages/astro examples/container-with-vitest: @@ -175,7 +175,7 @@ importers: specifier: ^4.3.0 version: link:../../packages/integrations/react astro: - specifier: ^5.8.0 + specifier: ^5.8.1 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -206,7 +206,7 @@ importers: specifier: ^3.14.9 version: 3.14.9 astro: - specifier: ^5.8.0 + specifier: ^5.8.1 version: link:../../packages/astro examples/framework-multiple: @@ -233,7 +233,7 @@ importers: specifier: ^18.3.6 version: 18.3.7(@types/react@18.3.22) astro: - specifier: ^5.8.0 + specifier: ^5.8.1 version: link:../../packages/astro preact: specifier: ^10.26.5 @@ -263,7 +263,7 @@ importers: specifier: ^2.0.3 version: 2.0.5(preact@10.26.7) astro: - specifier: ^5.8.0 + specifier: ^5.8.1 version: link:../../packages/astro preact: specifier: ^10.26.5 @@ -281,7 +281,7 @@ importers: specifier: ^18.3.6 version: 18.3.7(@types/react@18.3.22) astro: - specifier: ^5.8.0 + specifier: ^5.8.1 version: link:../../packages/astro react: specifier: ^18.3.1 @@ -296,7 +296,7 @@ importers: specifier: ^5.1.0 version: link:../../packages/integrations/solid astro: - specifier: ^5.8.0 + specifier: ^5.8.1 version: link:../../packages/astro solid-js: specifier: ^1.9.5 @@ -308,7 +308,7 @@ importers: specifier: ^7.1.0 version: link:../../packages/integrations/svelte astro: - specifier: ^5.8.0 + specifier: ^5.8.1 version: link:../../packages/astro svelte: specifier: ^5.25.7 @@ -320,7 +320,7 @@ importers: specifier: ^5.1.0 version: link:../../packages/integrations/vue astro: - specifier: ^5.8.0 + specifier: ^5.8.1 version: link:../../packages/astro vue: specifier: ^3.5.13 @@ -332,25 +332,25 @@ importers: specifier: ^9.2.2 version: link:../../packages/integrations/node astro: - specifier: ^5.8.0 + specifier: ^5.8.1 version: link:../../packages/astro examples/integration: devDependencies: astro: - specifier: ^5.8.0 + specifier: ^5.8.1 version: link:../../packages/astro examples/minimal: dependencies: astro: - specifier: ^5.8.0 + specifier: ^5.8.1 version: link:../../packages/astro examples/portfolio: dependencies: astro: - specifier: ^5.8.0 + specifier: ^5.8.1 version: link:../../packages/astro examples/ssr: @@ -362,7 +362,7 @@ importers: specifier: ^7.1.0 version: link:../../packages/integrations/svelte astro: - specifier: ^5.8.0 + specifier: ^5.8.1 version: link:../../packages/astro svelte: specifier: ^5.25.7 @@ -371,7 +371,7 @@ importers: examples/starlog: dependencies: astro: - specifier: ^5.8.0 + specifier: ^5.8.1 version: link:../../packages/astro sass: specifier: ^1.86.3 @@ -386,7 +386,7 @@ importers: specifier: ^18.17.8 version: 18.19.50 astro: - specifier: ^5.8.0 + specifier: ^5.8.1 version: link:../../packages/astro examples/with-markdoc: @@ -395,7 +395,7 @@ importers: specifier: ^0.15.0 version: link:../../packages/integrations/markdoc astro: - specifier: ^5.8.0 + specifier: ^5.8.1 version: link:../../packages/astro examples/with-mdx: @@ -407,7 +407,7 @@ importers: specifier: ^4.1.0 version: link:../../packages/integrations/preact astro: - specifier: ^5.8.0 + specifier: ^5.8.1 version: link:../../packages/astro preact: specifier: ^10.26.5 @@ -422,7 +422,7 @@ importers: specifier: ^0.5.2 version: 0.5.2(nanostores@0.11.4)(preact@10.26.7) astro: - specifier: ^5.8.0 + specifier: ^5.8.1 version: link:../../packages/astro nanostores: specifier: ^0.11.4 @@ -443,7 +443,7 @@ importers: specifier: ^1.9.0 version: 1.9.0 astro: - specifier: ^5.8.0 + specifier: ^5.8.1 version: link:../../packages/astro canvas-confetti: specifier: ^1.9.3 @@ -455,7 +455,7 @@ importers: examples/with-vitest: dependencies: astro: - specifier: ^5.8.0 + specifier: ^5.8.1 version: link:../../packages/astro vitest: specifier: ^3.1.1 @@ -10527,7 +10527,6 @@ packages: libsql@0.5.4: resolution: {integrity: sha512-GEFeWca4SDAQFxjHWJBE6GK52LEtSskiujbG3rqmmeTO9t4sfSBKIURNLLpKDDF7fb7jmTuuRkDAn9BZGITQNw==} - cpu: [x64, arm64, wasm32] os: [darwin, linux, win32] lightningcss-darwin-arm64@1.29.2: |