From 290e344dee4092ce592490d1f58ef389831e4ad0 Mon Sep 17 00:00:00 2001 From: Ben Holmes Date: Tue, 30 May 2023 19:51:09 -0400 Subject: [PATCH] Fix out-of-date example dependencies (#7248) * revert changeset patch * deps: bump astro across examples * deps: bump @astrojs packages across examples * deps: bump @astrojs/markdoc --- .prettierrc.cjs | 23 -- .prettierrc.js | 32 +++ examples/basics/package.json | 2 +- examples/blog/package.json | 8 +- examples/component/package.json | 2 +- examples/deno/package.json | 4 +- examples/docs/package.json | 6 +- examples/framework-alpine/package.json | 4 +- examples/framework-lit/package.json | 4 +- examples/framework-multiple/package.json | 12 +- examples/framework-preact/package.json | 4 +- examples/framework-react/package.json | 4 +- examples/framework-solid/package.json | 4 +- examples/framework-svelte/package.json | 4 +- examples/framework-vue/package.json | 4 +- examples/hackernews/package.json | 4 +- examples/integration/package.json | 2 +- examples/middleware/package.json | 4 +- examples/minimal/package.json | 2 +- examples/non-html-pages/package.json | 2 +- examples/portfolio/package.json | 2 +- examples/ssr/package.json | 6 +- examples/with-markdoc/package.json | 4 +- examples/with-markdown-plugins/package.json | 4 +- examples/with-markdown-shiki/package.json | 2 +- examples/with-mdx/package.json | 6 +- examples/with-nanostores/package.json | 4 +- examples/with-tailwindcss/package.json | 6 +- examples/with-vite-plugin-pwa/package.json | 2 +- examples/with-vitest/package.json | 2 +- package.json | 6 +- ....1.patch => @changesets__cli@2.23.0.patch} | 2 +- pnpm-lock.yaml | 232 +++++++++--------- 33 files changed, 211 insertions(+), 198 deletions(-) delete mode 100644 .prettierrc.cjs create mode 100644 .prettierrc.js rename patches/{@changesets__cli@2.26.1.patch => @changesets__cli@2.23.0.patch} (88%) diff --git a/.prettierrc.cjs b/.prettierrc.cjs deleted file mode 100644 index e2127a63c2..0000000000 --- a/.prettierrc.cjs +++ /dev/null @@ -1,23 +0,0 @@ -module.exports = { - printWidth: 100, - semi: true, - singleQuote: true, - tabWidth: 2, - trailingComma: 'es5', - useTabs: true, - plugins: ['./node_modules/prettier-plugin-astro'], - overrides: [ - { - files: ['.*', '*.json', '*.md', '*.toml', '*.yml'], - options: { - useTabs: false, - }, - }, - { - files: ['**/*.astro'], - options: { - parser: 'astro', - }, - }, - ], -}; diff --git a/.prettierrc.js b/.prettierrc.js new file mode 100644 index 0000000000..d43df33f5b --- /dev/null +++ b/.prettierrc.js @@ -0,0 +1,32 @@ +// Heads up: This file should be renamed to `.cjs`, however if we did that, changesets wouldn't be able to load it +module.exports = { + printWidth: 100, + semi: true, + singleQuote: true, + tabWidth: 2, + trailingComma: 'es5', + useTabs: true, + plugins: ['./node_modules/prettier-plugin-astro'], + overrides: [ + { + // Changesets run Prettier using our configuration, however it uses a very old version of Prettier that does + // not support our plugin and it ends up doing more harm than good. As such, we'll disable our plugin for changelogs + files: ['CHANGELOG.md'], + options: { + plugins: [], + }, + }, + { + files: ['.*', '*.json', '*.md', '*.toml', '*.yml'], + options: { + useTabs: false, + }, + }, + { + files: ['**/*.astro'], + options: { + parser: 'astro', + }, + }, + ], +}; diff --git a/examples/basics/package.json b/examples/basics/package.json index 7bd0e99cc5..faaed5dbae 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^2.4.1" + "astro": "^2.5.6" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index ba5d50f21c..8aad8cdf12 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -11,9 +11,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^0.19.1", - "@astrojs/rss": "^2.4.1", - "@astrojs/sitemap": "^1.3.0", - "astro": "^2.4.1" + "@astrojs/mdx": "^0.19.5", + "@astrojs/rss": "^2.4.3", + "@astrojs/sitemap": "^1.3.2", + "astro": "^2.5.6" } } diff --git a/examples/component/package.json b/examples/component/package.json index ed01254e55..0d91bd0798 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^2.4.1" + "astro": "^2.5.6" }, "peerDependencies": { "astro": "^2.0.0-beta.0" diff --git a/examples/deno/package.json b/examples/deno/package.json index 5bab8680fe..b267befb24 100644 --- a/examples/deno/package.json +++ b/examples/deno/package.json @@ -10,9 +10,9 @@ "astro": "astro" }, "dependencies": { - "astro": "^2.4.1" + "astro": "^2.5.6" }, "devDependencies": { - "@astrojs/deno": "^4.1.0" + "@astrojs/deno": "^4.1.1" } } diff --git a/examples/docs/package.json b/examples/docs/package.json index 42b79f5fec..bb9b8b449c 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -12,14 +12,14 @@ }, "dependencies": { "@algolia/client-search": "^4.17.0", - "@astrojs/preact": "^2.1.0", - "@astrojs/react": "^2.1.3", + "@astrojs/preact": "^2.2.1", + "@astrojs/react": "^2.2.1", "@docsearch/css": "^3.3.4", "@docsearch/react": "^3.3.4", "@types/node": "^18.16.3", "@types/react": "^18.2.5", "@types/react-dom": "^18.2.3", - "astro": "^2.4.1", + "astro": "^2.5.6", "preact": "^10.13.2", "react": "^18.2.0", "react-dom": "^18.2.0" diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index c722321bbb..6d686ba768 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -11,9 +11,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/alpinejs": "^0.2.1", + "@astrojs/alpinejs": "^0.2.2", "@types/alpinejs": "^3.7.1", "alpinejs": "^3.12.0", - "astro": "^2.4.1" + "astro": "^2.5.6" } } diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index 90d47e260c..aa176cac90 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -11,9 +11,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/lit": "^2.0.1", + "@astrojs/lit": "^2.0.2", "@webcomponents/template-shadowroot": "^0.2.1", - "astro": "^2.4.1", + "astro": "^2.5.6", "lit": "^2.7.4" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 611a86da03..e5fb7b468d 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -11,12 +11,12 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^2.1.0", - "@astrojs/react": "^2.1.3", - "@astrojs/solid-js": "^2.1.1", - "@astrojs/svelte": "^2.1.1", - "@astrojs/vue": "^2.1.1", - "astro": "^2.4.1", + "@astrojs/preact": "^2.2.1", + "@astrojs/react": "^2.2.1", + "@astrojs/solid-js": "^2.2.0", + "@astrojs/svelte": "^2.2.0", + "@astrojs/vue": "^2.2.1", + "astro": "^2.5.6", "preact": "^10.13.2", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index e130b7432f..5b9b5ca992 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -11,9 +11,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^2.1.0", + "@astrojs/preact": "^2.2.1", "@preact/signals": "^1.1.3", - "astro": "^2.4.1", + "astro": "^2.5.6", "preact": "^10.13.2" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index e75c9252d6..b57022042c 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -11,10 +11,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/react": "^2.1.3", + "@astrojs/react": "^2.2.1", "@types/react": "^18.2.5", "@types/react-dom": "^18.2.3", - "astro": "^2.4.1", + "astro": "^2.5.6", "react": "^18.2.0", "react-dom": "^18.2.0" } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 18fb521e9b..f399110b84 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -11,8 +11,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/solid-js": "^2.1.1", - "astro": "^2.4.1", + "@astrojs/solid-js": "^2.2.0", + "astro": "^2.5.6", "solid-js": "^1.7.4" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index d061a6a977..a3c348e62f 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -11,8 +11,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/svelte": "^2.1.1", - "astro": "^2.4.1", + "@astrojs/svelte": "^2.2.0", + "astro": "^2.5.6", "svelte": "^3.58.0" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 8d443def77..f6ea660a6a 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -11,8 +11,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/vue": "^2.1.1", - "astro": "^2.4.1", + "@astrojs/vue": "^2.2.1", + "astro": "^2.5.6", "vue": "^3.2.47" } } diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json index fd2acd11fe..fb43330ae9 100644 --- a/examples/hackernews/package.json +++ b/examples/hackernews/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "@astrojs/node": "^5.1.2", - "astro": "^2.4.1" + "@astrojs/node": "^5.1.4", + "astro": "^2.5.6" } } diff --git a/examples/integration/package.json b/examples/integration/package.json index aa0fb512da..9e38a05899 100644 --- a/examples/integration/package.json +++ b/examples/integration/package.json @@ -15,7 +15,7 @@ ], "scripts": {}, "devDependencies": { - "astro": "^2.4.1" + "astro": "^2.5.6" }, "peerDependencies": { "astro": "^2.0.0-beta.0" diff --git a/examples/middleware/package.json b/examples/middleware/package.json index c9bc6466a8..9cd76a52f1 100644 --- a/examples/middleware/package.json +++ b/examples/middleware/package.json @@ -12,8 +12,8 @@ "server": "node dist/server/entry.mjs" }, "dependencies": { - "@astrojs/node": "^5.1.2", - "astro": "^2.4.1", + "@astrojs/node": "^5.1.4", + "astro": "^2.5.6", "html-minifier": "^4.0.0" } } diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 642dfd2b04..da59a3f411 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^2.4.1" + "astro": "^2.5.6" } } diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json index 337e0ee779..5f161e8f5b 100644 --- a/examples/non-html-pages/package.json +++ b/examples/non-html-pages/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^2.4.1" + "astro": "^2.5.6" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 25fc3c3a07..1aeb84bce3 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^2.4.1" + "astro": "^2.5.6" } } diff --git a/examples/ssr/package.json b/examples/ssr/package.json index d1e610c80d..039523d19d 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -12,9 +12,9 @@ "server": "node dist/server/entry.mjs" }, "dependencies": { - "@astrojs/node": "^5.1.2", - "@astrojs/svelte": "^2.1.1", - "astro": "^2.4.1", + "@astrojs/node": "^5.1.4", + "@astrojs/svelte": "^2.2.0", + "astro": "^2.5.6", "svelte": "^3.58.0" } } diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json index ccdb3e8f08..c2a55b4155 100644 --- a/examples/with-markdoc/package.json +++ b/examples/with-markdoc/package.json @@ -11,8 +11,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/markdoc": "^0.2.0", - "astro": "^2.4.1", + "@astrojs/markdoc": "^0.3.0", + "astro": "^2.5.6", "kleur": "^4.1.5" } } diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index 5232858141..73074cd65b 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -11,8 +11,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/markdown-remark": "^2.2.0", - "astro": "^2.4.1", + "@astrojs/markdown-remark": "^2.2.1", + "astro": "^2.5.6", "hast-util-select": "^5.0.5", "rehype-autolink-headings": "^6.1.1", "rehype-slug": "^5.1.0", diff --git a/examples/with-markdown-shiki/package.json b/examples/with-markdown-shiki/package.json index 9daa08fae5..3693a32f3f 100644 --- a/examples/with-markdown-shiki/package.json +++ b/examples/with-markdown-shiki/package.json @@ -11,6 +11,6 @@ "astro": "astro" }, "dependencies": { - "astro": "^2.4.1" + "astro": "^2.5.6" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index 9c0091cd07..5c92ed78fd 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -11,9 +11,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^0.19.1", - "@astrojs/preact": "^2.1.0", - "astro": "^2.4.1", + "@astrojs/mdx": "^0.19.5", + "@astrojs/preact": "^2.2.1", + "astro": "^2.5.6", "preact": "^10.13.2" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 91d7e8480c..6aacc79663 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -11,9 +11,9 @@ "astro": "astro" }, "dependencies": { - "@astrojs/preact": "^2.1.0", + "@astrojs/preact": "^2.2.1", "@nanostores/preact": "^0.4.1", - "astro": "^2.4.1", + "astro": "^2.5.6", "nanostores": "^0.8.1", "preact": "^10.13.2" } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 5f14a9ccd2..e8792dc38e 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -11,10 +11,10 @@ "astro": "astro" }, "dependencies": { - "@astrojs/mdx": "^0.19.1", - "@astrojs/tailwind": "^3.1.2", + "@astrojs/mdx": "^0.19.5", + "@astrojs/tailwind": "^3.1.3", "@types/canvas-confetti": "^1.6.0", - "astro": "^2.4.1", + "astro": "^2.5.6", "autoprefixer": "^10.4.14", "canvas-confetti": "^1.6.0", "postcss": "^8.4.23", diff --git a/examples/with-vite-plugin-pwa/package.json b/examples/with-vite-plugin-pwa/package.json index 271e982559..8182f61fe9 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": "^2.4.1", + "astro": "^2.5.6", "vite-plugin-pwa": "0.14.7", "workbox-window": "^6.5.4" } diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json index ee0856a9b1..307feda3ec 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "astro": "^2.4.1", + "astro": "^2.5.6", "vitest": "^0.31.0" } } diff --git a/package.json b/package.json index f213c733d1..4798190696 100644 --- a/package.json +++ b/package.json @@ -70,7 +70,7 @@ ] }, "patchedDependencies": { - "@changesets/cli@2.26.1": "patches/@changesets__cli@2.26.1.patch" + "@changesets/cli@2.23.0": "patches/@changesets__cli@2.23.0.patch" } }, "dependencies": { @@ -78,8 +78,8 @@ "astro-benchmark": "workspace:*" }, "devDependencies": { - "@changesets/changelog-github": "0.4.8", - "@changesets/cli": "2.26.1", + "@changesets/changelog-github": "0.4.4", + "@changesets/cli": "2.23.0", "@types/node": "^18.7.21", "@typescript-eslint/eslint-plugin": "^5.58.0", "@typescript-eslint/parser": "^5.58.0", diff --git a/patches/@changesets__cli@2.26.1.patch b/patches/@changesets__cli@2.23.0.patch similarity index 88% rename from patches/@changesets__cli@2.26.1.patch rename to patches/@changesets__cli@2.23.0.patch index 22baa97df5..621c0596e9 100644 --- a/patches/@changesets__cli@2.26.1.patch +++ b/patches/@changesets__cli@2.23.0.patch @@ -1,5 +1,5 @@ diff --git a/dist/cli.cjs.dev.js b/dist/cli.cjs.dev.js -index 73ab02a861b1f5a8e1bf10984340a0a6b1518b15..2309d78fb1ff07428bc76136d9eb4f4d8d6571cc 100644 +index 5511d0c05d3b7472876dcc8410e938ccf612654f..aa75e3982b68e1226ba1877a7f32017e517480f5 100644 --- a/dist/cli.cjs.dev.js +++ b/dist/cli.cjs.dev.js @@ -279,6 +279,9 @@ async function confirmMajorRelease(pkgJSON) { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 80fe5e5c01..a6f81bd154 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -6,9 +6,9 @@ overrides: packageExtensionsChecksum: 01871422d489547c532184effb134b35 patchedDependencies: - '@changesets/cli@2.26.1': - hash: rpibscpwt2erpjuy2wpxneagme - path: patches/@changesets__cli@2.26.1.patch + '@changesets/cli@2.23.0': + hash: kcozqtpxuwjzskw6zg5royevn4 + path: patches/@changesets__cli@2.23.0.patch importers: @@ -22,11 +22,11 @@ importers: version: link:benchmark devDependencies: '@changesets/changelog-github': - specifier: 0.4.8 - version: 0.4.8 + specifier: 0.4.4 + version: 0.4.4 '@changesets/cli': - specifier: 2.26.1 - version: 2.26.1(patch_hash=rpibscpwt2erpjuy2wpxneagme) + specifier: 2.23.0 + version: 2.23.0(patch_hash=kcozqtpxuwjzskw6zg5royevn4) '@types/node': specifier: ^18.7.21 version: 18.16.3 @@ -128,38 +128,38 @@ importers: examples/basics: dependencies: astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro examples/blog: dependencies: '@astrojs/mdx': - specifier: ^0.19.1 + specifier: ^0.19.5 version: link:../../packages/integrations/mdx '@astrojs/rss': - specifier: ^2.4.1 + specifier: ^2.4.3 version: link:../../packages/astro-rss '@astrojs/sitemap': - specifier: ^1.3.0 + specifier: ^1.3.2 version: link:../../packages/integrations/sitemap astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro examples/component: devDependencies: astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro examples/deno: dependencies: astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro devDependencies: '@astrojs/deno': - specifier: ^4.1.0 + specifier: ^4.1.1 version: link:../../packages/integrations/deno examples/docs: @@ -168,10 +168,10 @@ importers: specifier: ^4.17.0 version: 4.17.0 '@astrojs/preact': - specifier: ^2.1.0 + specifier: ^2.2.1 version: link:../../packages/integrations/preact '@astrojs/react': - specifier: ^2.1.3 + specifier: ^2.2.1 version: link:../../packages/integrations/react '@docsearch/css': specifier: ^3.3.4 @@ -189,7 +189,7 @@ importers: specifier: ^18.2.3 version: 18.2.3 astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro preact: specifier: ^10.13.2 @@ -208,7 +208,7 @@ importers: examples/framework-alpine: dependencies: '@astrojs/alpinejs': - specifier: ^0.2.1 + specifier: ^0.2.2 version: link:../../packages/integrations/alpinejs '@types/alpinejs': specifier: ^3.7.1 @@ -217,19 +217,19 @@ importers: specifier: ^3.12.0 version: 3.12.0 astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro examples/framework-lit: dependencies: '@astrojs/lit': - specifier: ^2.0.1 + specifier: ^2.0.2 version: link:../../packages/integrations/lit '@webcomponents/template-shadowroot': specifier: ^0.2.1 version: 0.2.1 astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro lit: specifier: ^2.7.4 @@ -238,22 +238,22 @@ importers: examples/framework-multiple: dependencies: '@astrojs/preact': - specifier: ^2.1.0 + specifier: ^2.2.1 version: link:../../packages/integrations/preact '@astrojs/react': - specifier: ^2.1.3 + specifier: ^2.2.1 version: link:../../packages/integrations/react '@astrojs/solid-js': - specifier: ^2.1.1 + specifier: ^2.2.0 version: link:../../packages/integrations/solid '@astrojs/svelte': - specifier: ^2.1.1 + specifier: ^2.2.0 version: link:../../packages/integrations/svelte '@astrojs/vue': - specifier: ^2.1.1 + specifier: ^2.2.1 version: link:../../packages/integrations/vue astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro preact: specifier: ^10.13.2 @@ -277,13 +277,13 @@ importers: examples/framework-preact: dependencies: '@astrojs/preact': - specifier: ^2.1.0 + specifier: ^2.2.1 version: link:../../packages/integrations/preact '@preact/signals': specifier: ^1.1.3 version: 1.1.3(preact@10.13.2) astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro preact: specifier: ^10.13.2 @@ -292,7 +292,7 @@ importers: examples/framework-react: dependencies: '@astrojs/react': - specifier: ^2.1.3 + specifier: ^2.2.1 version: link:../../packages/integrations/react '@types/react': specifier: ^18.2.5 @@ -301,7 +301,7 @@ importers: specifier: ^18.2.3 version: 18.2.3 astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro react: specifier: ^18.2.0 @@ -313,10 +313,10 @@ importers: examples/framework-solid: dependencies: '@astrojs/solid-js': - specifier: ^2.1.1 + specifier: ^2.2.0 version: link:../../packages/integrations/solid astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro solid-js: specifier: ^1.7.4 @@ -325,10 +325,10 @@ importers: examples/framework-svelte: dependencies: '@astrojs/svelte': - specifier: ^2.1.1 + specifier: ^2.2.0 version: link:../../packages/integrations/svelte astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro svelte: specifier: ^3.58.0 @@ -337,10 +337,10 @@ importers: examples/framework-vue: dependencies: '@astrojs/vue': - specifier: ^2.1.1 + specifier: ^2.2.1 version: link:../../packages/integrations/vue astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro vue: specifier: ^3.2.47 @@ -349,25 +349,25 @@ importers: examples/hackernews: dependencies: '@astrojs/node': - specifier: ^5.1.2 + specifier: ^5.1.4 version: link:../../packages/integrations/node astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro examples/integration: devDependencies: astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro examples/middleware: dependencies: '@astrojs/node': - specifier: ^5.1.2 + specifier: ^5.1.4 version: link:../../packages/integrations/node astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro html-minifier: specifier: ^4.0.0 @@ -376,31 +376,31 @@ importers: examples/minimal: dependencies: astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro examples/non-html-pages: dependencies: astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro examples/portfolio: dependencies: astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro examples/ssr: dependencies: '@astrojs/node': - specifier: ^5.1.2 + specifier: ^5.1.4 version: link:../../packages/integrations/node '@astrojs/svelte': - specifier: ^2.1.1 + specifier: ^2.2.0 version: link:../../packages/integrations/svelte astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro svelte: specifier: ^3.58.0 @@ -409,10 +409,10 @@ importers: examples/with-markdoc: dependencies: '@astrojs/markdoc': - specifier: ^0.2.0 - version: 0.2.0(astro@packages+astro) + specifier: ^0.3.0 + version: link:../../packages/integrations/markdoc astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro kleur: specifier: ^4.1.5 @@ -421,10 +421,10 @@ importers: examples/with-markdown-plugins: dependencies: '@astrojs/markdown-remark': - specifier: ^2.2.0 + specifier: ^2.2.1 version: link:../../packages/markdown/remark astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro hast-util-select: specifier: ^5.0.5 @@ -445,19 +445,19 @@ importers: examples/with-markdown-shiki: dependencies: astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro examples/with-mdx: dependencies: '@astrojs/mdx': - specifier: ^0.19.1 + specifier: ^0.19.5 version: link:../../packages/integrations/mdx '@astrojs/preact': - specifier: ^2.1.0 + specifier: ^2.2.1 version: link:../../packages/integrations/preact astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro preact: specifier: ^10.13.2 @@ -466,13 +466,13 @@ importers: examples/with-nanostores: dependencies: '@astrojs/preact': - specifier: ^2.1.0 + specifier: ^2.2.1 version: link:../../packages/integrations/preact '@nanostores/preact': specifier: ^0.4.1 version: 0.4.1(nanostores@0.8.1)(preact@10.13.2) astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro nanostores: specifier: ^0.8.1 @@ -484,16 +484,16 @@ importers: examples/with-tailwindcss: dependencies: '@astrojs/mdx': - specifier: ^0.19.1 + specifier: ^0.19.5 version: link:../../packages/integrations/mdx '@astrojs/tailwind': - specifier: ^3.1.2 + specifier: ^3.1.3 version: link:../../packages/integrations/tailwind '@types/canvas-confetti': specifier: ^1.6.0 version: 1.6.0 astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro autoprefixer: specifier: ^10.4.14 @@ -511,7 +511,7 @@ importers: examples/with-vite-plugin-pwa: dependencies: astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro vite-plugin-pwa: specifier: 0.14.7 @@ -523,7 +523,7 @@ importers: examples/with-vitest: dependencies: astro: - specifier: ^2.4.1 + specifier: ^2.5.6 version: link:../../packages/astro vitest: specifier: ^0.31.0 @@ -5527,6 +5527,11 @@ packages: /@astrojs/compiler@1.4.0: resolution: {integrity: sha512-Vav3a32Ct+omowV9X9kDM2ghWAvFdjZkv5BdvBjZCKYbFVT6//IZApDIVbHI1UPuLuD2sKyLWx2T+E7clqUJdg==} + dev: false + + /@astrojs/compiler@1.4.2: + resolution: {integrity: sha512-xoRp7JpiMZPK/beUcZEM5kM44Z/h20wwwQcl54duPqQMyySG9vZ5xMM6dYiQmn7b3XzpZs0cT6TRDoJJ5gwHAQ==} + dev: true /@astrojs/language-server@1.0.0: resolution: {integrity: sha512-oEw7AwJmzjgy6HC9f5IdrphZ1GVgfV/+7xQuyf52cpTiRWd/tJISK3MsKP0cDkVlfodmNABNFnAaAWuLZEiiiA==} @@ -5537,9 +5542,9 @@ packages: '@vscode/emmet-helper': 2.8.8 events: 3.3.0 prettier: 2.8.8 - prettier-plugin-astro: 0.8.0 + prettier-plugin-astro: 0.8.1 synckit: 0.8.5 - vscode-css-languageservice: 6.2.5 + vscode-css-languageservice: 6.2.6 vscode-html-languageservice: 5.0.5 vscode-languageserver: 8.1.0 vscode-languageserver-protocol: 3.17.3 @@ -5548,24 +5553,6 @@ packages: vscode-uri: 3.0.7 dev: false - /@astrojs/markdoc@0.2.0(astro@packages+astro): - resolution: {integrity: sha512-sGDdUooNq7I7LDWOrzuAiNvZLqtWzUvMdmWA6O7y54zMVVCx4OPsLCd+oIUGvF5lZ+Yvv1dHGCM1fWnqOc+B4A==} - engines: {node: '>=16.12.0'} - peerDependencies: - astro: '*' - dependencies: - '@markdoc/markdoc': 0.2.2 - astro: link:packages/astro - esbuild: 0.17.18 - github-slugger: 2.0.0 - gray-matter: 4.0.3 - kleur: 4.1.5 - zod: 3.20.6 - transitivePeerDependencies: - - '@types/react' - - react - dev: false - /@babel/code-frame@7.21.4: resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==} engines: {node: '>=6.9.0'} @@ -7146,8 +7133,8 @@ packages: '@changesets/types': 5.2.1 dev: true - /@changesets/changelog-github@0.4.8: - resolution: {integrity: sha512-jR1DHibkMAb5v/8ym77E4AMNWZKB5NPzw5a5Wtqm1JepAuIF+hrKp2u04NKM14oBZhHglkCfrla9uq8ORnK/dw==} + /@changesets/changelog-github@0.4.4: + resolution: {integrity: sha512-htSILqCkyYtTB5/LoVKwx7GCJQGxAiBcYbfUKWiz/QoDARuM01owYtMXhV6/iytJZq/Dqqz3PjMZUNB4MphpbQ==} dependencies: '@changesets/get-github-info': 0.5.2 '@changesets/types': 5.2.1 @@ -7156,8 +7143,8 @@ packages: - encoding dev: true - /@changesets/cli@2.26.1(patch_hash=rpibscpwt2erpjuy2wpxneagme): - resolution: {integrity: sha512-XnTa+b51vt057fyAudvDKGB0Sh72xutQZNAdXkCqPBKO2zvs2yYZx5hFZj1u9cbtpwM6Sxtcr02/FQJfZOzemQ==} + /@changesets/cli@2.23.0(patch_hash=kcozqtpxuwjzskw6zg5royevn4): + resolution: {integrity: sha512-Gi3tMi0Vr6eNd8GX6q73tbOm9XOzGfuLEm4PYVeWG2neg5DlRGNOjYwrFULJ/An3N9MHtHn4r5h1Qvnju9Ijug==} hasBin: true dependencies: '@babel/runtime': 7.21.5 @@ -7168,12 +7155,12 @@ packages: '@changesets/errors': 0.1.4 '@changesets/get-dependents-graph': 1.3.5 '@changesets/get-release-plan': 3.0.16 - '@changesets/git': 2.0.0 + '@changesets/git': 1.5.0 '@changesets/logger': 0.0.5 '@changesets/pre': 1.0.14 '@changesets/read': 0.5.9 '@changesets/types': 5.2.1 - '@changesets/write': 0.2.3 + '@changesets/write': 0.1.9 '@manypkg/get-packages': 1.1.3 '@types/is-ci': 3.0.0 '@types/semver': 6.2.3 @@ -7249,6 +7236,17 @@ packages: resolution: {integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==} dev: true + /@changesets/git@1.5.0: + resolution: {integrity: sha512-Xo8AT2G7rQJSwV87c8PwMm6BAc98BnufRMsML7m7Iw8Or18WFvFmxqG5aOL5PBvhgq9KrKvaeIBNIymracSuHg==} + dependencies: + '@babel/runtime': 7.21.5 + '@changesets/errors': 0.1.4 + '@changesets/types': 5.2.1 + '@manypkg/get-packages': 1.1.3 + is-subdir: 1.2.0 + spawndamnit: 2.0.0 + dev: true + /@changesets/git@2.0.0: resolution: {integrity: sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==} dependencies: @@ -7305,14 +7303,14 @@ packages: resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==} dev: true - /@changesets/write@0.2.3: - resolution: {integrity: sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==} + /@changesets/write@0.1.9: + resolution: {integrity: sha512-E90ZrsrfJVOOQaP3Mm5Xd7uDwBAqq3z5paVEavTHKA8wxi7NAL8CmjgbGxSFuiP7ubnJA2BuHlrdE4z86voGOg==} dependencies: '@babel/runtime': 7.21.5 '@changesets/types': 5.2.1 fs-extra: 7.0.1 human-id: 1.0.2 - prettier: 2.8.8 + prettier: 1.19.1 dev: true /@cloudflare/kv-asset-handler@0.2.0: @@ -8088,21 +8086,6 @@ packages: - supports-color dev: false - /@markdoc/markdoc@0.2.2: - resolution: {integrity: sha512-0TiD9jmA5h5znN4lxo7HECAu3WieU5g5vUsfByeucrdR/x88hEilpt16EydFyJwJddQ/3w5HQgW7Ovy62r4cyw==} - engines: {node: '>=14.7.0'} - peerDependencies: - '@types/react': '*' - react: '*' - peerDependenciesMeta: - '@types/react': - optional: true - react: - optional: true - optionalDependencies: - '@types/markdown-it': 12.2.3 - dev: false - /@markdoc/markdoc@0.3.0: resolution: {integrity: sha512-QWCF8krIIw52ulflfnoff0yG1eKl9CCGA3KAiOjHyYtHNzSEouFh8lO52nAaO3qV2Ctj1GTB8TTb2rTfvISQfA==} engines: {node: '>=14.7.0'} @@ -9423,6 +9406,10 @@ packages: resolution: {integrity: sha512-A3uY356uOU9nGa+TQIT/i3ziWUgJjVMUrGGXSrtRiTwklyCFjGVWIOHoEIHbJpiyhDkJd9kvIWUOfXK1IkK8XQ==} dev: false + /@vscode/l10n@0.0.14: + resolution: {integrity: sha512-/yrv59IEnmh655z1oeDnGcvMYwnEzNzHLgeYcQCkhYX0xBvYWrAuefoiLcPBUkMpJsb46bqQ6Yv4pwTTQ4d3Qg==} + dev: false + /@vue/babel-helper-vue-transform-on@1.0.2: resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==} dev: false @@ -12438,7 +12425,7 @@ packages: '@types/glob': 7.2.0 array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.2.11 + fast-glob: 3.2.12 glob: 7.2.3 ignore: 5.2.4 merge2: 1.4.1 @@ -12451,7 +12438,7 @@ packages: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.2.11 + fast-glob: 3.2.12 ignore: 5.2.4 merge2: 1.4.1 slash: 3.0.0 @@ -15601,11 +15588,28 @@ packages: /prettier-plugin-astro@0.8.0: resolution: {integrity: sha512-kt9wk33J7HvFGwFaHb8piwy4zbUmabC8Nu+qCw493jhe96YkpjscqGBPy4nJ9TPy9pd7+kEx1zM81rp+MIdrXg==} engines: {node: ^14.15.0 || >=16.0.0, pnpm: '>=7.14.0'} + dependencies: + '@astrojs/compiler': 1.4.2 + prettier: 2.8.8 + sass-formatter: 0.7.6 + synckit: 0.8.5 + dev: true + + /prettier-plugin-astro@0.8.1: + resolution: {integrity: sha512-lJ/mG/Lz/ccSwNtwqpFS126mtMVzFVyYv0ddTF9wqwrEG4seECjKDAyw/oGv915rAcJi8jr89990nqfpmG+qdg==} + engines: {node: ^14.15.0 || >=16.0.0, pnpm: '>=7.14.0'} dependencies: '@astrojs/compiler': 1.4.0 prettier: 2.8.8 sass-formatter: 0.7.6 synckit: 0.8.5 + dev: false + + /prettier@1.19.1: + resolution: {integrity: sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==} + engines: {node: '>=4'} + hasBin: true + dev: true /prettier@2.8.8: resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} @@ -17835,10 +17839,10 @@ packages: acorn-walk: 8.2.0 dev: true - /vscode-css-languageservice@6.2.5: - resolution: {integrity: sha512-/1oyBZK3jfx6A0cA46FCUpy6OlqEsMT47LUIldCIP1YMKRYezJ9No+aNj9IM0AqhRZ92DxZ1DmU5lJ+biuiacA==} + /vscode-css-languageservice@6.2.6: + resolution: {integrity: sha512-SA2WkeOecIpUiEbZnjOsP/fI5CRITZEiQGSHXKiDQDwLApfKcnLhZwMtOBbIifSzESVcQa7b/shX/nbnF4NoCg==} dependencies: - '@vscode/l10n': 0.0.13 + '@vscode/l10n': 0.0.14 vscode-languageserver-textdocument: 1.0.8 vscode-languageserver-types: 3.17.3 vscode-uri: 3.0.7