From 19cd962d0b3433ee305d1d277ca4fc3b93593558 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 Jun 2022 09:14:17 -0400 Subject: [PATCH] [ci] release (#3684) Co-authored-by: github-actions[bot] --- .changeset/cuddly-llamas-arrive.md | 5 -- .changeset/empty-chicken-refuse.md | 6 -- .changeset/neat-seas-peel.md | 23 ------- .changeset/pink-shirts-mix.md | 5 -- .changeset/spotty-rockets-grow.md | 5 -- examples/basics/package.json | 2 +- examples/blog-multiple-authors/package.json | 2 +- examples/blog/package.json | 2 +- examples/component/demo/package.json | 2 +- examples/component/package.json | 2 +- examples/docs/package.json | 2 +- examples/env-vars/package.json | 2 +- examples/framework-alpine/package.json | 2 +- examples/framework-lit/package.json | 2 +- examples/framework-multiple/package.json | 4 +- examples/framework-preact/package.json | 2 +- examples/framework-react/package.json | 2 +- examples/framework-solid/package.json | 2 +- examples/framework-svelte/package.json | 4 +- examples/framework-vue/package.json | 2 +- examples/integrations-playground/package.json | 4 +- examples/minimal/package.json | 2 +- examples/non-html-pages/package.json | 2 +- examples/portfolio/package.json | 2 +- examples/ssr/package.json | 4 +- examples/starter/package.json | 2 +- examples/subpath/package.json | 2 +- examples/with-markdown-plugins/package.json | 2 +- examples/with-markdown-shiki/package.json | 2 +- examples/with-markdown/package.json | 4 +- examples/with-nanostores/package.json | 4 +- examples/with-tailwindcss/package.json | 2 +- examples/with-vite-plugin-pwa/package.json | 2 +- packages/astro/CHANGELOG.md | 30 ++++++++ packages/astro/package.json | 2 +- packages/integrations/partytown/CHANGELOG.md | 6 ++ packages/integrations/partytown/package.json | 2 +- packages/integrations/svelte/CHANGELOG.md | 6 ++ packages/integrations/svelte/package.json | 2 +- pnpm-lock.yaml | 68 +++++++++---------- 40 files changed, 113 insertions(+), 115 deletions(-) delete mode 100644 .changeset/cuddly-llamas-arrive.md delete mode 100644 .changeset/empty-chicken-refuse.md delete mode 100644 .changeset/neat-seas-peel.md delete mode 100644 .changeset/pink-shirts-mix.md delete mode 100644 .changeset/spotty-rockets-grow.md diff --git a/.changeset/cuddly-llamas-arrive.md b/.changeset/cuddly-llamas-arrive.md deleted file mode 100644 index 40942b606..000000000 --- a/.changeset/cuddly-llamas-arrive.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/partytown': patch ---- - -Include partytown scripts in SSR manifest diff --git a/.changeset/empty-chicken-refuse.md b/.changeset/empty-chicken-refuse.md deleted file mode 100644 index b473aa7b4..000000000 --- a/.changeset/empty-chicken-refuse.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'astro': patch -'@astrojs/svelte': patch ---- - -Fix PostCSS config not applied to Svelte component by default diff --git a/.changeset/neat-seas-peel.md b/.changeset/neat-seas-peel.md deleted file mode 100644 index 71ce868cc..000000000 --- a/.changeset/neat-seas-peel.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -'astro': patch ---- - -Allow TypeScript inside script tags - -This makes it so that you can use TypeScript inside of script tags like so: - -```html - -``` - -Note that the the VSCode extension does not currently support this, however. diff --git a/.changeset/pink-shirts-mix.md b/.changeset/pink-shirts-mix.md deleted file mode 100644 index a1d14454a..000000000 --- a/.changeset/pink-shirts-mix.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"astro": patch ---- - -Fix a bug with `astro add react` adding a too-complex semver to your package.json diff --git a/.changeset/spotty-rockets-grow.md b/.changeset/spotty-rockets-grow.md deleted file mode 100644 index 68d455432..000000000 --- a/.changeset/spotty-rockets-grow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Allow specifying entryFileNames for client JS diff --git a/examples/basics/package.json b/examples/basics/package.json index 68ffeb727..e54ce1167 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^1.0.0-beta.52" + "astro": "^1.0.0-beta.53" } } diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json index 3d84620a4..4514566a1 100644 --- a/examples/blog-multiple-authors/package.json +++ b/examples/blog-multiple-authors/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/preact": "^0.1.3", - "astro": "^1.0.0-beta.52", + "astro": "^1.0.0-beta.53", "sass": "^1.52.2" }, "dependencies": { diff --git a/examples/blog/package.json b/examples/blog/package.json index 65855a94b..33680cad8 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/preact": "^0.1.3", - "astro": "^1.0.0-beta.52" + "astro": "^1.0.0-beta.53" }, "dependencies": { "preact": "^10.7.3" diff --git a/examples/component/demo/package.json b/examples/component/demo/package.json index acd46723b..c91bf5b6b 100644 --- a/examples/component/demo/package.json +++ b/examples/component/demo/package.json @@ -10,6 +10,6 @@ }, "devDependencies": { "@example/my-component": "workspace:*", - "astro": "^1.0.0-beta.52" + "astro": "^1.0.0-beta.53" } } diff --git a/examples/component/package.json b/examples/component/package.json index 6ac119aed..10cd44ec8 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -8,6 +8,6 @@ "serve": "astro --root demo preview" }, "devDependencies": { - "astro": "^1.0.0-beta.52" + "astro": "^1.0.0-beta.53" } } diff --git a/examples/docs/package.json b/examples/docs/package.json index c88176f08..37720315e 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -20,6 +20,6 @@ "devDependencies": { "@astrojs/preact": "^0.1.3", "@astrojs/react": "^0.1.3", - "astro": "^1.0.0-beta.52" + "astro": "^1.0.0-beta.53" } } diff --git a/examples/env-vars/package.json b/examples/env-vars/package.json index 4895561bf..f30366443 100644 --- a/examples/env-vars/package.json +++ b/examples/env-vars/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^1.0.0-beta.52" + "astro": "^1.0.0-beta.53" } } diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index 98f5af1c2..07ca0542c 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^1.0.0-beta.52" + "astro": "^1.0.0-beta.53" }, "dependencies": { "alpinejs": "^3.10.2" diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index 28213a640..d77a0ef43 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/lit": "^0.2.0", - "astro": "^1.0.0-beta.52" + "astro": "^1.0.0-beta.53" }, "dependencies": { "@webcomponents/template-shadowroot": "^0.1.0", diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index a9aa168a7..ec0a7766b 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -13,9 +13,9 @@ "@astrojs/preact": "^0.1.3", "@astrojs/react": "^0.1.3", "@astrojs/solid-js": "^0.1.4", - "@astrojs/svelte": "^0.1.4", + "@astrojs/svelte": "^0.1.5", "@astrojs/vue": "^0.1.5", - "astro": "^1.0.0-beta.52" + "astro": "^1.0.0-beta.53" }, "dependencies": { "@webcomponents/template-shadowroot": "^0.1.0", diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index c090fc12b..1000353de 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/preact": "^0.1.3", - "astro": "^1.0.0-beta.52" + "astro": "^1.0.0-beta.53" }, "dependencies": { "preact": "^10.7.3" diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index a73f01a9b..4a2ddf71c 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -12,7 +12,7 @@ "@astrojs/react": "^0.1.3", "@types/react": "^18.0.10", "@types/react-dom": "^18.0.5", - "astro": "^1.0.0-beta.52" + "astro": "^1.0.0-beta.53" }, "dependencies": { "react": "^18.1.0", diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 543ccf8c6..0bf6eb47f 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/solid-js": "^0.1.4", - "astro": "^1.0.0-beta.52" + "astro": "^1.0.0-beta.53" }, "dependencies": { "solid-js": "^1.4.3" diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 093a5607b..61744cf86 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -9,8 +9,8 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/svelte": "^0.1.4", - "astro": "^1.0.0-beta.52" + "@astrojs/svelte": "^0.1.5", + "astro": "^1.0.0-beta.53" }, "dependencies": { "svelte": "^3.48.0" diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 1ff7355d0..9951b5603 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/vue": "^0.1.5", - "astro": "^1.0.0-beta.52" + "astro": "^1.0.0-beta.53" }, "dependencies": { "vue": "^3.2.36" diff --git a/examples/integrations-playground/package.json b/examples/integrations-playground/package.json index 922b3b863..75bde1026 100644 --- a/examples/integrations-playground/package.json +++ b/examples/integrations-playground/package.json @@ -10,13 +10,13 @@ }, "devDependencies": { "@astrojs/lit": "^0.2.0", - "@astrojs/partytown": "^0.1.4", + "@astrojs/partytown": "^0.1.5", "@astrojs/react": "^0.1.3", "@astrojs/sitemap": "^0.2.1", "@astrojs/solid-js": "0.1.4", "@astrojs/tailwind": "^0.2.1", "@astrojs/turbolinks": "^0.1.3", - "astro": "^1.0.0-beta.52", + "astro": "^1.0.0-beta.53", "solid-js": "^1.4.3" }, "dependencies": { diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 08c740c4a..30445f8bf 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^1.0.0-beta.52" + "astro": "^1.0.0-beta.53" } } diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json index 9d6291515..9692f9983 100644 --- a/examples/non-html-pages/package.json +++ b/examples/non-html-pages/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^1.0.0-beta.52" + "astro": "^1.0.0-beta.53" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 8495bb2d3..6a7337ee4 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/preact": "^0.1.3", - "astro": "^1.0.0-beta.52", + "astro": "^1.0.0-beta.53", "sass": "^1.52.2" }, "dependencies": { diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 5ef91c78a..51469fc49 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -10,8 +10,8 @@ }, "devDependencies": { "@astrojs/node": "^0.1.2", - "@astrojs/svelte": "^0.1.4", - "astro": "^1.0.0-beta.52", + "@astrojs/svelte": "^0.1.5", + "astro": "^1.0.0-beta.53", "concurrently": "^7.2.1", "lightcookie": "^1.0.25", "unocss": "^0.15.6", diff --git a/examples/starter/package.json b/examples/starter/package.json index ebd0b9915..4bcda5fdc 100644 --- a/examples/starter/package.json +++ b/examples/starter/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^1.0.0-beta.52" + "astro": "^1.0.0-beta.53" } } diff --git a/examples/subpath/package.json b/examples/subpath/package.json index cb5c5f505..498daf7a7 100644 --- a/examples/subpath/package.json +++ b/examples/subpath/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/react": "^0.1.3", - "astro": "^1.0.0-beta.52", + "astro": "^1.0.0-beta.53", "sass": "^1.52.2" }, "dependencies": { diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index 6c997e4f3..534fa609c 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/markdown-remark": "^0.11.3", - "astro": "^1.0.0-beta.52", + "astro": "^1.0.0-beta.53", "hast-util-select": "5.0.1", "rehype-autolink-headings": "^6.1.1", "rehype-slug": "^5.0.1", diff --git a/examples/with-markdown-shiki/package.json b/examples/with-markdown-shiki/package.json index 683b49c76..8c997012b 100644 --- a/examples/with-markdown-shiki/package.json +++ b/examples/with-markdown-shiki/package.json @@ -10,6 +10,6 @@ }, "devDependencies": { "@astrojs/markdown-remark": "^0.11.3", - "astro": "^1.0.0-beta.52" + "astro": "^1.0.0-beta.53" } } diff --git a/examples/with-markdown/package.json b/examples/with-markdown/package.json index c59c4f1ea..f37e12498 100644 --- a/examples/with-markdown/package.json +++ b/examples/with-markdown/package.json @@ -12,9 +12,9 @@ "@astrojs/markdown-remark": "^0.11.3", "@astrojs/preact": "^0.1.3", "@astrojs/react": "^0.1.3", - "@astrojs/svelte": "^0.1.4", + "@astrojs/svelte": "^0.1.5", "@astrojs/vue": "^0.1.5", - "astro": "^1.0.0-beta.52" + "astro": "^1.0.0-beta.53" }, "dependencies": { "preact": "^10.7.3", diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 5a9eba65f..a729410fa 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -23,8 +23,8 @@ "@astrojs/preact": "^0.1.3", "@astrojs/react": "^0.1.3", "@astrojs/solid-js": "^0.1.4", - "@astrojs/svelte": "^0.1.4", + "@astrojs/svelte": "^0.1.5", "@astrojs/vue": "^0.1.5", - "astro": "^1.0.0-beta.52" + "astro": "^1.0.0-beta.53" } } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index b579cce2d..794d193d4 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "@astrojs/tailwind": "^0.2.1", - "astro": "^1.0.0-beta.52", + "astro": "^1.0.0-beta.53", "autoprefixer": "^10.4.7", "canvas-confetti": "^1.5.1", "postcss": "^8.4.14", diff --git a/examples/with-vite-plugin-pwa/package.json b/examples/with-vite-plugin-pwa/package.json index dac62f418..965e461e1 100644 --- a/examples/with-vite-plugin-pwa/package.json +++ b/examples/with-vite-plugin-pwa/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^1.0.0-beta.52", + "astro": "^1.0.0-beta.53", "vite-plugin-pwa": "0.11.11", "workbox-window": "^6.5.3" } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index a164694ec..559b9b52e 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,35 @@ # astro +## 1.0.0-beta.53 + +### Patch Changes + +- [#3685](https://github.com/withastro/astro/pull/3685) [`3d554fdb`](https://github.com/withastro/astro/commit/3d554fdbfb49d85d2945b7775825f7d9ace959ce) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix PostCSS config not applied to Svelte component by default + +* [#3665](https://github.com/withastro/astro/pull/3665) [`9a813268`](https://github.com/withastro/astro/commit/9a813268db2e3a7ed5644739b7a12e83e5d239b2) Thanks [@matthewp](https://github.com/matthewp)! - Allow TypeScript inside script tags + + This makes it so that you can use TypeScript inside of script tags like so: + + ```html + + ``` + + Note that the the VSCode extension does not currently support this, however. + +- [#3633](https://github.com/withastro/astro/pull/3633) [`921d9a27`](https://github.com/withastro/astro/commit/921d9a27e243c27e40e429a0a5c7d562d7b9633f) Thanks [@FredKSchott](https://github.com/FredKSchott)! - Fix a bug with `astro add react` adding a too-complex semver to your package.json + +* [#3676](https://github.com/withastro/astro/pull/3676) [`85c33751`](https://github.com/withastro/astro/commit/85c33751c20002e29bd646325a6e39f83cbb1f4d) Thanks [@matthewp](https://github.com/matthewp)! - Allow specifying entryFileNames for client JS + ## 1.0.0-beta.52 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 97eb6a648..d145c4979 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "1.0.0-beta.52", + "version": "1.0.0-beta.53", "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/integrations/partytown/CHANGELOG.md b/packages/integrations/partytown/CHANGELOG.md index 4bcd931bf..aa79fa8a8 100644 --- a/packages/integrations/partytown/CHANGELOG.md +++ b/packages/integrations/partytown/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/partytown +## 0.1.5 + +### Patch Changes + +- [#3686](https://github.com/withastro/astro/pull/3686) [`b36ecb71`](https://github.com/withastro/astro/commit/b36ecb717e2cb623501c6d9a60471ac4daba43a8) Thanks [@matthewp](https://github.com/matthewp)! - Include partytown scripts in SSR manifest + ## 0.1.4 ### Patch Changes diff --git a/packages/integrations/partytown/package.json b/packages/integrations/partytown/package.json index ec00c34b0..8c25c1b42 100644 --- a/packages/integrations/partytown/package.json +++ b/packages/integrations/partytown/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/partytown", "description": "Astro + Partytown integration", - "version": "0.1.4", + "version": "0.1.5", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", diff --git a/packages/integrations/svelte/CHANGELOG.md b/packages/integrations/svelte/CHANGELOG.md index 196ff9b3e..4e84b1fee 100644 --- a/packages/integrations/svelte/CHANGELOG.md +++ b/packages/integrations/svelte/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/svelte +## 0.1.5 + +### Patch Changes + +- [#3685](https://github.com/withastro/astro/pull/3685) [`3d554fdb`](https://github.com/withastro/astro/commit/3d554fdbfb49d85d2945b7775825f7d9ace959ce) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix PostCSS config not applied to Svelte component by default + ## 0.1.4 ### Patch Changes diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json index ea6a6829c..c25e0eb0a 100644 --- a/packages/integrations/svelte/package.json +++ b/packages/integrations/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/svelte", - "version": "0.1.4", + "version": "0.1.5", "description": "Use Svelte components within Astro", "type": "module", "types": "./dist/index.d.ts", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 60a6af258..520b204a4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -49,14 +49,14 @@ importers: examples/basics: specifiers: - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 devDependencies: astro: link:../../packages/astro examples/blog: specifiers: '@astrojs/preact': ^0.1.3 - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 preact: ^10.7.3 dependencies: preact: 10.7.3 @@ -67,7 +67,7 @@ importers: examples/blog-multiple-authors: specifiers: '@astrojs/preact': ^0.1.3 - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 preact: ^10.7.3 sass: ^1.52.2 dependencies: @@ -79,14 +79,14 @@ importers: examples/component: specifiers: - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 devDependencies: astro: link:../../packages/astro examples/component/demo: specifiers: '@example/my-component': workspace:* - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 devDependencies: '@example/my-component': link:../packages/my-component astro: link:../../../packages/astro @@ -102,7 +102,7 @@ importers: '@docsearch/css': ^3.1.0 '@docsearch/react': ^3.1.0 '@types/react': ^17.0.45 - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 preact: ^10.7.3 react: ^18.1.0 react-dom: ^18.1.0 @@ -121,14 +121,14 @@ importers: examples/env-vars: specifiers: - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 devDependencies: astro: link:../../packages/astro examples/framework-alpine: specifiers: alpinejs: ^3.10.2 - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 dependencies: alpinejs: 3.10.2 devDependencies: @@ -138,7 +138,7 @@ importers: specifiers: '@astrojs/lit': ^0.2.0 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 lit: ^2.2.5 dependencies: '@webcomponents/template-shadowroot': 0.1.0 @@ -153,10 +153,10 @@ importers: '@astrojs/preact': ^0.1.3 '@astrojs/react': ^0.1.3 '@astrojs/solid-js': ^0.1.4 - '@astrojs/svelte': ^0.1.4 + '@astrojs/svelte': ^0.1.5 '@astrojs/vue': ^0.1.5 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 lit: ^2.2.5 preact: ^10.7.3 react: ^18.1.0 @@ -185,7 +185,7 @@ importers: examples/framework-preact: specifiers: '@astrojs/preact': ^0.1.3 - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 preact: ^10.7.3 dependencies: preact: 10.7.3 @@ -198,7 +198,7 @@ importers: '@astrojs/react': ^0.1.3 '@types/react': ^18.0.10 '@types/react-dom': ^18.0.5 - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 react: ^18.1.0 react-dom: ^18.1.0 dependencies: @@ -213,7 +213,7 @@ importers: examples/framework-solid: specifiers: '@astrojs/solid-js': ^0.1.4 - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 solid-js: ^1.4.3 dependencies: solid-js: 1.4.3 @@ -223,8 +223,8 @@ importers: examples/framework-svelte: specifiers: - '@astrojs/svelte': ^0.1.4 - astro: ^1.0.0-beta.52 + '@astrojs/svelte': ^0.1.5 + astro: ^1.0.0-beta.53 svelte: ^3.48.0 dependencies: svelte: 3.48.0 @@ -235,7 +235,7 @@ importers: examples/framework-vue: specifiers: '@astrojs/vue': ^0.1.5 - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 vue: ^3.2.36 dependencies: vue: 3.2.37 @@ -246,14 +246,14 @@ importers: examples/integrations-playground: specifiers: '@astrojs/lit': ^0.2.0 - '@astrojs/partytown': ^0.1.4 + '@astrojs/partytown': ^0.1.5 '@astrojs/react': ^0.1.3 '@astrojs/sitemap': ^0.2.1 '@astrojs/solid-js': 0.1.4 '@astrojs/tailwind': ^0.2.1 '@astrojs/turbolinks': ^0.1.3 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 lit: ^2.2.5 preact: ^10.7.3 react: ^18.1.0 @@ -282,20 +282,20 @@ importers: examples/minimal: specifiers: - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 devDependencies: astro: link:../../packages/astro examples/non-html-pages: specifiers: - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 devDependencies: astro: link:../../packages/astro examples/portfolio: specifiers: '@astrojs/preact': ^0.1.3 - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 preact: ^10.7.3 sass: ^1.52.2 dependencies: @@ -308,8 +308,8 @@ importers: examples/ssr: specifiers: '@astrojs/node': ^0.1.2 - '@astrojs/svelte': ^0.1.4 - astro: ^1.0.0-beta.52 + '@astrojs/svelte': ^0.1.5 + astro: ^1.0.0-beta.53 concurrently: ^7.2.1 lightcookie: ^1.0.25 svelte: ^3.48.0 @@ -328,14 +328,14 @@ importers: examples/starter: specifiers: - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 devDependencies: astro: link:../../packages/astro examples/subpath: specifiers: '@astrojs/react': ^0.1.3 - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 react: ^18.1.0 react-dom: ^18.1.0 sass: ^1.52.2 @@ -352,9 +352,9 @@ importers: '@astrojs/markdown-remark': ^0.11.3 '@astrojs/preact': ^0.1.3 '@astrojs/react': ^0.1.3 - '@astrojs/svelte': ^0.1.4 + '@astrojs/svelte': ^0.1.5 '@astrojs/vue': ^0.1.5 - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 preact: ^10.7.3 react: ^18.1.0 react-dom: ^18.1.0 @@ -377,7 +377,7 @@ importers: examples/with-markdown-plugins: specifiers: '@astrojs/markdown-remark': ^0.11.3 - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 hast-util-select: 5.0.1 rehype-autolink-headings: ^6.1.1 rehype-slug: ^5.0.1 @@ -395,7 +395,7 @@ importers: examples/with-markdown-shiki: specifiers: '@astrojs/markdown-remark': ^0.11.3 - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 devDependencies: '@astrojs/markdown-remark': link:../../packages/markdown/remark astro: link:../../packages/astro @@ -405,12 +405,12 @@ importers: '@astrojs/preact': ^0.1.3 '@astrojs/react': ^0.1.3 '@astrojs/solid-js': ^0.1.4 - '@astrojs/svelte': ^0.1.4 + '@astrojs/svelte': ^0.1.5 '@astrojs/vue': ^0.1.5 '@nanostores/preact': ^0.1.3 '@nanostores/react': ^0.1.5 '@nanostores/vue': ^0.4.1 - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 nanostores: ^0.5.12 preact: ^10.7.3 react: ^18.1.0 @@ -438,7 +438,7 @@ importers: examples/with-tailwindcss: specifiers: '@astrojs/tailwind': ^0.2.1 - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 autoprefixer: ^10.4.7 canvas-confetti: ^1.5.1 postcss: ^8.4.14 @@ -453,7 +453,7 @@ importers: examples/with-vite-plugin-pwa: specifiers: - astro: ^1.0.0-beta.52 + astro: ^1.0.0-beta.53 vite-plugin-pwa: 0.11.11 workbox-window: ^6.5.3 devDependencies: