From 383be783797f874e557eb453339a3f21f368be48 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 13 Oct 2022 19:18:29 +0000 Subject: [PATCH] [ci] release --- .changeset/dry-moose-join.md | 29 ---------- .changeset/honest-crabs-scream.md | 5 -- examples/basics/package.json | 2 +- examples/blog/package.json | 2 +- examples/component/package.json | 4 +- examples/deno/package.json | 2 +- examples/docs/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 | 2 +- examples/framework-vue/package.json | 4 +- examples/integration/package.json | 4 +- examples/minimal/package.json | 2 +- examples/non-html-pages/package.json | 2 +- examples/portfolio/package.json | 2 +- examples/ssr/package.json | 2 +- examples/with-markdown-plugins/package.json | 2 +- examples/with-markdown-shiki/package.json | 2 +- examples/with-mdx/package.json | 2 +- examples/with-nanostores/package.json | 2 +- examples/with-tailwindcss/package.json | 2 +- examples/with-vite-plugin-pwa/package.json | 2 +- examples/with-vitest/package.json | 2 +- packages/astro/CHANGELOG.md | 6 +++ packages/astro/package.json | 2 +- packages/integrations/vue/CHANGELOG.md | 32 +++++++++++ packages/integrations/vue/client.js | 2 +- packages/integrations/vue/package.json | 2 +- packages/integrations/vue/server.js | 2 +- packages/integrations/vue/src/index.ts | 2 +- .../vue/test/app-entrypoint.test.js | 8 +-- pnpm-lock.yaml | 54 +++++++++---------- 36 files changed, 103 insertions(+), 99 deletions(-) delete mode 100644 .changeset/dry-moose-join.md delete mode 100644 .changeset/honest-crabs-scream.md diff --git a/.changeset/dry-moose-join.md b/.changeset/dry-moose-join.md deleted file mode 100644 index b90fac4eeb3ff..0000000000000 --- a/.changeset/dry-moose-join.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -'@astrojs/vue': minor ---- - -Add support for the `appEntrypoint` option, which accepts a root-relative path to an app entrypoint. The default export of this file should be a function that accepts a Vue `App` instance prior to rendering. This opens up the ability to extend the `App` instance with [custom Vue plugins](https://vuejs.org/guide/reusability/plugins.html). - -```js -// astro.config.mjs -import { defineConfig } from 'astro/config'; -import vue from '@astrojs/vue'; - -export default defineConfig({ - integrations: [ - vue({ - appEntrypoint: '/src/pages/_app' - }) - ] -}) -``` - -```js -// src/pages/_app.ts -import type { App } from 'vue'; -import i18nPlugin from '../plugins/i18n' - -export default function setup(app: App) { - app.use(i18nPlugin, { /* options */ }) -} -``` diff --git a/.changeset/honest-crabs-scream.md b/.changeset/honest-crabs-scream.md deleted file mode 100644 index 58dd5f6749878..0000000000000 --- a/.changeset/honest-crabs-scream.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fix jsconfig.json aliases not working anymore after 1.5.0 diff --git a/examples/basics/package.json b/examples/basics/package.json index 0a5b48aaaa686..819b2f9999b8a 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.0" + "astro": "^1.5.1" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index 6baaa6746c367..b09bb798b9a09 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.0", + "astro": "^1.5.1", "@astrojs/mdx": "^0.11.4", "@astrojs/rss": "^1.0.2", "@astrojs/sitemap": "^1.0.0" diff --git a/examples/component/package.json b/examples/component/package.json index 4fd6e320d0834..4cbede0053fd7 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,9 +15,9 @@ ], "scripts": {}, "devDependencies": { - "astro": "^1.5.0" + "astro": "^1.5.1" }, "peerDependencies": { - "astro": "^1.5.0" + "astro": "^1.5.1" } } diff --git a/examples/deno/package.json b/examples/deno/package.json index b5171bfe123ef..9400be4749778 100644 --- a/examples/deno/package.json +++ b/examples/deno/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.0" + "astro": "^1.5.1" }, "devDependencies": { "@astrojs/deno": "^1.2.0" diff --git a/examples/docs/package.json b/examples/docs/package.json index 34ea9c03d4388..a74597aa0e111 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -12,7 +12,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.0", + "astro": "^1.5.1", "preact": "^10.7.3", "react": "^18.1.0", "react-dom": "^18.1.0", diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index 581f3b6637feb..f8871a6c0bec2 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.0", + "astro": "^1.5.1", "alpinejs": "^3.10.2", "@astrojs/alpinejs": "^0.1.2", "@types/alpinejs": "^3.7.0" diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index 160dcd4d2cda6..ca5a9b534c232 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.0", + "astro": "^1.5.1", "lit": "^2.2.5", "@astrojs/lit": "^1.0.0", "@webcomponents/template-shadowroot": "^0.1.0" diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 4b25ab7bd9e14..1a90f95ec14c7 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.0", + "astro": "^1.5.1", "preact": "^10.7.3", "react": "^18.1.0", "react-dom": "^18.1.0", @@ -22,6 +22,6 @@ "@astrojs/react": "^1.2.0", "@astrojs/solid-js": "^1.2.0", "@astrojs/svelte": "^1.0.2", - "@astrojs/vue": "^1.1.0" + "@astrojs/vue": "^1.2.0" } } diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 6a94916a3bd09..bdb82dfbc0f38 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.0", + "astro": "^1.5.1", "preact": "^10.7.3", "@astrojs/preact": "^1.2.0", "@preact/signals": "^1.1.0" diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 88bdd9917607b..23697b7a45813 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.0", + "astro": "^1.5.1", "react": "^18.1.0", "react-dom": "^18.1.0", "@astrojs/react": "^1.2.0", diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 2c19e901596bb..55608e611bffa 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.0", + "astro": "^1.5.1", "solid-js": "^1.4.3", "@astrojs/solid-js": "^1.2.0" } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 1a5fc2cc55cd7..9eade574dd6f0 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -13,6 +13,6 @@ "dependencies": { "svelte": "^3.48.0", "@astrojs/svelte": "^1.0.2", - "astro": "^1.5.0" + "astro": "^1.5.1" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 779ddf150a849..0e5ffbd305f45 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -11,8 +11,8 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.0", + "astro": "^1.5.1", "vue": "^3.2.37", - "@astrojs/vue": "^1.1.0" + "@astrojs/vue": "^1.2.0" } } diff --git a/examples/integration/package.json b/examples/integration/package.json index 3dfd744ca77dc..4ce51d6c96120 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,9 +15,9 @@ ], "scripts": {}, "devDependencies": { - "astro": "^1.5.0" + "astro": "^1.5.1" }, "peerDependencies": { - "astro": "^1.5.0" + "astro": "^1.5.1" } } diff --git a/examples/minimal/package.json b/examples/minimal/package.json index d184053a454e4..497a363de0cf3 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.0" + "astro": "^1.5.1" } } diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json index 703c90365fe63..3d2680debe4a6 100644 --- a/examples/non-html-pages/package.json +++ b/examples/non-html-pages/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.0" + "astro": "^1.5.1" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 7cd4cafe65639..59c39ef79a211 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.0" + "astro": "^1.5.1" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index e792eb3ae337a..2fcacb06c7f7a 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -13,7 +13,7 @@ }, "devDependencies": {}, "dependencies": { - "astro": "^1.5.0", + "astro": "^1.5.1", "svelte": "^3.48.0", "@astrojs/svelte": "^1.0.2", "@astrojs/node": "^2.0.0", diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index 12acd79c92d73..660beef3e3267 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.0", + "astro": "^1.5.1", "@astrojs/markdown-remark": "^1.1.3", "hast-util-select": "5.0.1", "rehype-autolink-headings": "^6.1.1", diff --git a/examples/with-markdown-shiki/package.json b/examples/with-markdown-shiki/package.json index 2413062dee02f..4a257ead273fe 100644 --- a/examples/with-markdown-shiki/package.json +++ b/examples/with-markdown-shiki/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.0" + "astro": "^1.5.1" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index 1a7157ac114c6..e3d3d761b0c55 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.0", + "astro": "^1.5.1", "preact": "^10.6.5", "@astrojs/preact": "^1.2.0", "@astrojs/mdx": "^0.11.4" diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index c17a816c65e5a..c50c8d67898cf 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.0", + "astro": "^1.5.1", "preact": "^10.7.3", "@astrojs/preact": "^1.2.0", "nanostores": "^0.5.12", diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 26095362ef8ba..9ba5e53d78cab 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -13,7 +13,7 @@ "dependencies": { "@astrojs/tailwind": "^2.1.0", "@types/canvas-confetti": "^1.4.3", - "astro": "^1.5.0", + "astro": "^1.5.1", "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 0b52021486978..f4dc42147cca3 100644 --- a/examples/with-vite-plugin-pwa/package.json +++ b/examples/with-vite-plugin-pwa/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "astro": "^1.5.0", + "astro": "^1.5.1", "vite-plugin-pwa": "0.11.11", "workbox-window": "^6.5.3" } diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json index f78c36630d934..c7cae7541fd5e 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^1.5.0", + "astro": "^1.5.1", "vitest": "^0.20.3" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 8d531f11d4071..dc684e90439bb 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,11 @@ # astro +## 1.5.1 + +### Patch Changes + +- [#5076](https://github.com/withastro/astro/pull/5076) [`6f9a88b31`](https://github.com/withastro/astro/commit/6f9a88b31ba0881acd56fcb62c4a554c867b14d6) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix jsconfig.json aliases not working anymore after 1.5.0 + ## 1.5.0 ### Minor Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 805f92ac19a8f..13a638afb20bc 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "1.5.0", + "version": "1.5.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/integrations/vue/CHANGELOG.md b/packages/integrations/vue/CHANGELOG.md index b7ff6d03ef87f..936c6fb11c147 100644 --- a/packages/integrations/vue/CHANGELOG.md +++ b/packages/integrations/vue/CHANGELOG.md @@ -1,5 +1,37 @@ # @astrojs/vue +## 1.2.0 + +### Minor Changes + +- [#5075](https://github.com/withastro/astro/pull/5075) [`d25f54cb9`](https://github.com/withastro/astro/commit/d25f54cb9306eea9ed0445af8f77604dacacad43) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Add support for the `appEntrypoint` option, which accepts a root-relative path to an app entrypoint. The default export of this file should be a function that accepts a Vue `App` instance prior to rendering. This opens up the ability to extend the `App` instance with [custom Vue plugins](https://vuejs.org/guide/reusability/plugins.html). + + ```js + // astro.config.mjs + import { defineConfig } from 'astro/config'; + import vue from '@astrojs/vue'; + + export default defineConfig({ + integrations: [ + vue({ + appEntrypoint: '/src/pages/_app', + }), + ], + }); + ``` + + ```js + // src/pages/_app.ts + import type { App } from 'vue'; + import i18nPlugin from '../plugins/i18n'; + + export default function setup(app: App) { + app.use(i18nPlugin, { + /* options */ + }); + } + ``` + ## 1.1.0 ### Minor Changes diff --git a/packages/integrations/vue/client.js b/packages/integrations/vue/client.js index faf1ac63ae04b..7e67825df3029 100644 --- a/packages/integrations/vue/client.js +++ b/packages/integrations/vue/client.js @@ -1,5 +1,5 @@ import { h, createSSRApp, createApp } from 'vue'; -import { setup } from 'virtual:@astrojs/vue/app' +import { setup } from 'virtual:@astrojs/vue/app'; import StaticHtml from './static-html.js'; export default (element) => diff --git a/packages/integrations/vue/package.json b/packages/integrations/vue/package.json index c5a932a3af4bb..f4682aa474144 100644 --- a/packages/integrations/vue/package.json +++ b/packages/integrations/vue/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/vue", - "version": "1.1.0", + "version": "1.2.0", "description": "Use Vue components within Astro", "type": "module", "types": "./dist/index.d.ts", diff --git a/packages/integrations/vue/server.js b/packages/integrations/vue/server.js index 831b46a1d7f09..0b148d23451b1 100644 --- a/packages/integrations/vue/server.js +++ b/packages/integrations/vue/server.js @@ -1,6 +1,6 @@ import { h, createSSRApp } from 'vue'; import { renderToString } from 'vue/server-renderer'; -import { setup } from 'virtual:@astrojs/vue/app' +import { setup } from 'virtual:@astrojs/vue/app'; import StaticHtml from './static-html.js'; function check(Component) { diff --git a/packages/integrations/vue/src/index.ts b/packages/integrations/vue/src/index.ts index 2af3062bfba0e..f7cf10fbd5ec5 100644 --- a/packages/integrations/vue/src/index.ts +++ b/packages/integrations/vue/src/index.ts @@ -57,7 +57,7 @@ async function getViteConfiguration(options?: Options): Promise { const config: UserConfig = { optimizeDeps: { include: ['@astrojs/vue/client.js', 'vue'], - exclude: ['@astrojs/vue/server.js', 'virtual:@astrojs/vue/app'] + exclude: ['@astrojs/vue/server.js', 'virtual:@astrojs/vue/app'], }, plugins: [vue(options), virtualAppEntrypoint(options)], ssr: { diff --git a/packages/integrations/vue/test/app-entrypoint.test.js b/packages/integrations/vue/test/app-entrypoint.test.js index 1b53fbd2138cc..0c60818a312da 100644 --- a/packages/integrations/vue/test/app-entrypoint.test.js +++ b/packages/integrations/vue/test/app-entrypoint.test.js @@ -8,13 +8,13 @@ describe('App Entrypoint', () => { before(async () => { fixture = await loadFixture({ - root: './fixtures/app-entrypoint/' + root: './fixtures/app-entrypoint/', }); await fixture.build(); }); it('loads during SSR', async () => { - const data = await fixture.readFile('/index.html') + const data = await fixture.readFile('/index.html'); const { document } = parseHTML(data); const bar = document.querySelector('#foo > #bar'); expect(bar).not.to.be.undefined; @@ -22,13 +22,13 @@ describe('App Entrypoint', () => { }); it('setup included in renderer bundle', async () => { - const data = await fixture.readFile('/index.html') + const data = await fixture.readFile('/index.html'); const { document } = parseHTML(data); const island = document.querySelector('astro-island'); const client = island.getAttribute('renderer-url'); expect(client).not.to.be.undefined; const js = await fixture.readFile(client); - expect(js).to.match(/\w+\.component\(\"Bar\"/gm) + expect(js).to.match(/\w+\.component\(\"Bar\"/gm); }); }); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 03b392a86746b..d6cec82546548 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -61,7 +61,7 @@ importers: examples/basics: specifiers: - astro: ^1.5.0 + astro: ^1.5.1 dependencies: astro: link:../../packages/astro @@ -70,7 +70,7 @@ importers: '@astrojs/mdx': ^0.11.4 '@astrojs/rss': ^1.0.2 '@astrojs/sitemap': ^1.0.0 - astro: ^1.5.0 + astro: ^1.5.1 dependencies: '@astrojs/mdx': link:../../packages/integrations/mdx '@astrojs/rss': link:../../packages/astro-rss @@ -79,14 +79,14 @@ importers: examples/component: specifiers: - astro: ^1.5.0 + astro: ^1.5.1 devDependencies: astro: link:../../packages/astro examples/deno: specifiers: '@astrojs/deno': ^1.2.0 - astro: ^1.5.0 + astro: ^1.5.1 dependencies: astro: link:../../packages/astro devDependencies: @@ -102,7 +102,7 @@ importers: '@types/node': ^18.0.0 '@types/react': ^17.0.45 '@types/react-dom': ^18.0.0 - astro: ^1.5.0 + astro: ^1.5.1 preact: ^10.7.3 react: ^18.1.0 react-dom: ^18.1.0 @@ -125,7 +125,7 @@ importers: '@astrojs/alpinejs': ^0.1.2 '@types/alpinejs': ^3.7.0 alpinejs: ^3.10.2 - astro: ^1.5.0 + astro: ^1.5.1 dependencies: '@astrojs/alpinejs': link:../../packages/integrations/alpinejs '@types/alpinejs': 3.7.0 @@ -136,7 +136,7 @@ importers: specifiers: '@astrojs/lit': ^1.0.0 '@webcomponents/template-shadowroot': ^0.1.0 - astro: ^1.5.0 + astro: ^1.5.1 lit: ^2.2.5 dependencies: '@astrojs/lit': link:../../packages/integrations/lit @@ -150,8 +150,8 @@ importers: '@astrojs/react': ^1.2.0 '@astrojs/solid-js': ^1.2.0 '@astrojs/svelte': ^1.0.2 - '@astrojs/vue': ^1.1.0 - astro: ^1.5.0 + '@astrojs/vue': ^1.2.0 + astro: ^1.5.1 preact: ^10.7.3 react: ^18.1.0 react-dom: ^18.1.0 @@ -176,7 +176,7 @@ importers: specifiers: '@astrojs/preact': ^1.2.0 '@preact/signals': ^1.1.0 - astro: ^1.5.0 + astro: ^1.5.1 preact: ^10.7.3 dependencies: '@astrojs/preact': link:../../packages/integrations/preact @@ -189,7 +189,7 @@ importers: '@astrojs/react': ^1.2.0 '@types/react': ^18.0.10 '@types/react-dom': ^18.0.5 - astro: ^1.5.0 + astro: ^1.5.1 react: ^18.1.0 react-dom: ^18.1.0 dependencies: @@ -203,7 +203,7 @@ importers: examples/framework-solid: specifiers: '@astrojs/solid-js': ^1.2.0 - astro: ^1.5.0 + astro: ^1.5.1 solid-js: ^1.4.3 dependencies: '@astrojs/solid-js': link:../../packages/integrations/solid @@ -213,7 +213,7 @@ importers: examples/framework-svelte: specifiers: '@astrojs/svelte': ^1.0.2 - astro: ^1.5.0 + astro: ^1.5.1 svelte: ^3.48.0 dependencies: '@astrojs/svelte': link:../../packages/integrations/svelte @@ -222,8 +222,8 @@ importers: examples/framework-vue: specifiers: - '@astrojs/vue': ^1.1.0 - astro: ^1.5.0 + '@astrojs/vue': ^1.2.0 + astro: ^1.5.1 vue: ^3.2.37 dependencies: '@astrojs/vue': link:../../packages/integrations/vue @@ -232,25 +232,25 @@ importers: examples/integration: specifiers: - astro: ^1.5.0 + astro: ^1.5.1 devDependencies: astro: link:../../packages/astro examples/minimal: specifiers: - astro: ^1.5.0 + astro: ^1.5.1 dependencies: astro: link:../../packages/astro examples/non-html-pages: specifiers: - astro: ^1.5.0 + astro: ^1.5.1 dependencies: astro: link:../../packages/astro examples/portfolio: specifiers: - astro: ^1.5.0 + astro: ^1.5.1 dependencies: astro: link:../../packages/astro @@ -258,7 +258,7 @@ importers: specifiers: '@astrojs/node': ^2.0.0 '@astrojs/svelte': ^1.0.2 - astro: ^1.5.0 + astro: ^1.5.1 concurrently: ^7.2.1 lightcookie: ^1.0.25 svelte: ^3.48.0 @@ -277,7 +277,7 @@ importers: examples/with-markdown-plugins: specifiers: '@astrojs/markdown-remark': ^1.1.3 - astro: ^1.5.0 + astro: ^1.5.1 hast-util-select: 5.0.1 rehype-autolink-headings: ^6.1.1 rehype-slug: ^5.0.1 @@ -294,7 +294,7 @@ importers: examples/with-markdown-shiki: specifiers: - astro: ^1.5.0 + astro: ^1.5.1 dependencies: astro: link:../../packages/astro @@ -302,7 +302,7 @@ importers: specifiers: '@astrojs/mdx': ^0.11.4 '@astrojs/preact': ^1.2.0 - astro: ^1.5.0 + astro: ^1.5.1 preact: ^10.6.5 dependencies: '@astrojs/mdx': link:../../packages/integrations/mdx @@ -314,7 +314,7 @@ importers: specifiers: '@astrojs/preact': ^1.2.0 '@nanostores/preact': ^0.1.3 - astro: ^1.5.0 + astro: ^1.5.1 nanostores: ^0.5.12 preact: ^10.7.3 dependencies: @@ -328,7 +328,7 @@ importers: specifiers: '@astrojs/tailwind': ^2.1.0 '@types/canvas-confetti': ^1.4.3 - astro: ^1.5.0 + astro: ^1.5.1 autoprefixer: ^10.4.7 canvas-confetti: ^1.5.1 postcss: ^8.4.14 @@ -344,7 +344,7 @@ importers: examples/with-vite-plugin-pwa: specifiers: - astro: ^1.5.0 + astro: ^1.5.1 vite-plugin-pwa: 0.11.11 workbox-window: ^6.5.3 dependencies: @@ -354,7 +354,7 @@ importers: examples/with-vitest: specifiers: - astro: ^1.5.0 + astro: ^1.5.1 vitest: ^0.20.3 dependencies: astro: link:../../packages/astro