From 270852370a4ab44b4489f4ed91841f026b7df071 Mon Sep 17 00:00:00 2001 From: "Fred K. Bot" <108291165+fredkbot@users.noreply.github.com> Date: Fri, 26 Aug 2022 17:30:37 -0700 Subject: [PATCH] [ci] release (#4508) Co-authored-by: github-actions[bot] --- .changeset/nice-readers-mix.md | 5 -- examples/basics/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 | 2 +- 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 | 2 +- examples/minimal/package.json | 2 +- examples/non-html-pages/package.json | 2 +- examples/portfolio/package.json | 2 +- examples/ssr/package.json | 2 +- examples/subpath/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 +- pnpm-lock.yaml | 52 ++++++++++----------- 30 files changed, 59 insertions(+), 58 deletions(-) delete mode 100644 .changeset/nice-readers-mix.md diff --git a/.changeset/nice-readers-mix.md b/.changeset/nice-readers-mix.md deleted file mode 100644 index 78b39d3b2..000000000 --- a/.changeset/nice-readers-mix.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fix `import-meta.d.ts` not being included in the npm package diff --git a/examples/basics/package.json b/examples/basics/package.json index 051008148..d0a3280cc 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "devDependencies": { - "astro": "^1.1.0" + "astro": "^1.1.1" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index 22b153091..6788479ad 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -13,6 +13,6 @@ "@astrojs/mdx": "^0.10.2", "@astrojs/rss": "^1.0.0", "@astrojs/sitemap": "^1.0.0", - "astro": "^1.1.0" + "astro": "^1.1.1" } } diff --git a/examples/component/demo/package.json b/examples/component/demo/package.json index b4d3323b9..21acc0906 100644 --- a/examples/component/demo/package.json +++ b/examples/component/demo/package.json @@ -11,6 +11,6 @@ }, "devDependencies": { "@example/my-component": "workspace:*", - "astro": "^1.1.0" + "astro": "^1.1.1" } } diff --git a/examples/component/package.json b/examples/component/package.json index c3d43fa0f..c77eee33e 100644 --- a/examples/component/package.json +++ b/examples/component/package.json @@ -8,6 +8,6 @@ "serve": "astro --root demo preview" }, "devDependencies": { - "astro": "^1.1.0" + "astro": "^1.1.1" } } diff --git a/examples/docs/package.json b/examples/docs/package.json index 08e6f768e..f217b2dfc 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -21,6 +21,6 @@ "devDependencies": { "@astrojs/preact": "^1.0.2", "@astrojs/react": "^1.1.0", - "astro": "^1.1.0" + "astro": "^1.1.1" } } diff --git a/examples/env-vars/package.json b/examples/env-vars/package.json index b0b52a840..d5d978738 100644 --- a/examples/env-vars/package.json +++ b/examples/env-vars/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "devDependencies": { - "astro": "^1.1.0" + "astro": "^1.1.1" } } diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index 54651f925..dae4c17bf 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -13,7 +13,7 @@ "@astrojs/alpinejs": "^0.1.1", "@types/alpinejs": "^3.7.0", "alpinejs": "^3.10.2", - "astro": "^1.1.0" + "astro": "^1.1.1" }, "dependencies": {} } diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index 2ec368c89..8791cbe2d 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -11,7 +11,7 @@ }, "devDependencies": { "@astrojs/lit": "^1.0.0", - "astro": "^1.1.0" + "astro": "^1.1.1" }, "dependencies": { "@webcomponents/template-shadowroot": "^0.1.0", diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index fd27814ea..c839f358f 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -15,7 +15,7 @@ "@astrojs/solid-js": "^1.1.0", "@astrojs/svelte": "^1.0.0", "@astrojs/vue": "^1.0.0", - "astro": "^1.1.0" + "astro": "^1.1.1" }, "dependencies": { "preact": "^10.7.3", diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 9a64ac432..113c088f0 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -11,7 +11,7 @@ }, "devDependencies": { "@astrojs/preact": "^1.0.2", - "astro": "^1.1.0" + "astro": "^1.1.1" }, "dependencies": { "preact": "^10.7.3" diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index c70e1d03f..1314da3d2 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -13,7 +13,7 @@ "@astrojs/react": "^1.1.0", "@types/react": "^18.0.10", "@types/react-dom": "^18.0.5", - "astro": "^1.1.0" + "astro": "^1.1.1" }, "dependencies": { "react": "^18.1.0", diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 802a65565..a7f08f37f 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -11,7 +11,7 @@ }, "devDependencies": { "@astrojs/solid-js": "^1.1.0", - "astro": "^1.1.0" + "astro": "^1.1.1" }, "dependencies": { "solid-js": "^1.4.3" diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index b97ea7849..677d6c07d 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -11,7 +11,7 @@ }, "devDependencies": { "@astrojs/svelte": "^1.0.0", - "astro": "^1.1.0" + "astro": "^1.1.1" }, "dependencies": { "svelte": "^3.48.0" diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 81be68b90..4d7276d61 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -11,7 +11,7 @@ }, "devDependencies": { "@astrojs/vue": "^1.0.0", - "astro": "^1.1.0" + "astro": "^1.1.1" }, "dependencies": { "vue": "^3.2.37" diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 4cf85c129..34e2d7107 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "devDependencies": { - "astro": "^1.1.0" + "astro": "^1.1.1" } } diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json index cb7b8a04d..c0ac6d91b 100644 --- a/examples/non-html-pages/package.json +++ b/examples/non-html-pages/package.json @@ -10,6 +10,6 @@ "astro": "astro" }, "devDependencies": { - "astro": "^1.1.0" + "astro": "^1.1.1" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index f58d203c4..0e543bce9 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -11,7 +11,7 @@ }, "devDependencies": { "@astrojs/preact": "^1.0.2", - "astro": "^1.1.0", + "astro": "^1.1.1", "sass": "^1.52.2" }, "dependencies": { diff --git a/examples/ssr/package.json b/examples/ssr/package.json index e1b1215bd..7307f8919 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -13,7 +13,7 @@ "devDependencies": { "@astrojs/node": "^1.0.0", "@astrojs/svelte": "^1.0.0", - "astro": "^1.1.0", + "astro": "^1.1.1", "concurrently": "^7.2.1", "lightcookie": "^1.0.25", "unocss": "^0.15.6", diff --git a/examples/subpath/package.json b/examples/subpath/package.json index e4568df3a..fc964d403 100644 --- a/examples/subpath/package.json +++ b/examples/subpath/package.json @@ -11,7 +11,7 @@ }, "devDependencies": { "@astrojs/react": "^1.1.0", - "astro": "^1.1.0" + "astro": "^1.1.1" }, "dependencies": { "react": "^18.1.0", diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index 3fe0626c3..47e395aed 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -11,7 +11,7 @@ }, "devDependencies": { "@astrojs/markdown-remark": "^1.1.0", - "astro": "^1.1.0", + "astro": "^1.1.1", "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 c46a275a8..86a080aff 100644 --- a/examples/with-markdown-shiki/package.json +++ b/examples/with-markdown-shiki/package.json @@ -11,6 +11,6 @@ }, "devDependencies": { "@astrojs/markdown-remark": "^1.1.0", - "astro": "^1.1.0" + "astro": "^1.1.1" } } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index a7c5540fd..635047028 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -12,7 +12,7 @@ "devDependencies": { "@astrojs/mdx": "^0.10.2", "@astrojs/preact": "^1.0.2", - "astro": "^1.1.0", + "astro": "^1.1.1", "preact": "^10.6.5" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index 2d8c57d05..1ee337115 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -16,6 +16,6 @@ }, "devDependencies": { "@astrojs/preact": "^1.0.2", - "astro": "^1.1.0" + "astro": "^1.1.1" } } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index b702da2f5..08c9c69c3 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -11,7 +11,7 @@ }, "devDependencies": { "@astrojs/tailwind": "^1.0.0", - "astro": "^1.1.0", + "astro": "^1.1.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 084f58624..2eeb7fec9 100644 --- a/examples/with-vite-plugin-pwa/package.json +++ b/examples/with-vite-plugin-pwa/package.json @@ -10,7 +10,7 @@ "astro": "astro" }, "devDependencies": { - "astro": "^1.1.0", + "astro": "^1.1.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 b830a7aec..b926dc150 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "devDependencies": { - "astro": "^1.1.0", + "astro": "^1.1.1", "vitest": "^0.20.3" } } diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index e8554f0e7..8afbeb272 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,11 @@ # astro +## 1.1.1 + +### Patch Changes + +- [#4507](https://github.com/withastro/astro/pull/4507) [`4e1af3f0e`](https://github.com/withastro/astro/commit/4e1af3f0e8f5627cea24e4ec76d711d0387e3176) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix `import-meta.d.ts` not being included in the npm package + ## 1.1.0 ### Minor Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 0815dd710..bdfb455a7 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "1.1.0", + "version": "1.1.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/pnpm-lock.yaml b/pnpm-lock.yaml index 66fe59e42..4abf91215 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -56,7 +56,7 @@ importers: examples/basics: specifiers: - astro: ^1.1.0 + astro: ^1.1.1 devDependencies: astro: link:../../packages/astro @@ -65,7 +65,7 @@ importers: '@astrojs/mdx': ^0.10.2 '@astrojs/rss': ^1.0.0 '@astrojs/sitemap': ^1.0.0 - astro: ^1.1.0 + astro: ^1.1.1 devDependencies: '@astrojs/mdx': link:../../packages/integrations/mdx '@astrojs/rss': link:../../packages/astro-rss @@ -74,14 +74,14 @@ importers: examples/component: specifiers: - astro: ^1.1.0 + astro: ^1.1.1 devDependencies: astro: link:../../packages/astro examples/component/demo: specifiers: '@example/my-component': workspace:* - astro: ^1.1.0 + astro: ^1.1.1 devDependencies: '@example/my-component': link:../packages/my-component astro: link:../../../packages/astro @@ -97,7 +97,7 @@ importers: '@docsearch/css': ^3.1.0 '@docsearch/react': ^3.1.0 '@types/react': ^17.0.45 - astro: ^1.1.0 + astro: ^1.1.1 preact: ^10.7.3 react: ^18.1.0 react-dom: ^18.1.0 @@ -116,7 +116,7 @@ importers: examples/env-vars: specifiers: - astro: ^1.1.0 + astro: ^1.1.1 devDependencies: astro: link:../../packages/astro @@ -125,7 +125,7 @@ importers: '@astrojs/alpinejs': ^0.1.1 '@types/alpinejs': ^3.7.0 alpinejs: ^3.10.2 - astro: ^1.1.0 + astro: ^1.1.1 devDependencies: '@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.1.0 + astro: ^1.1.1 lit: ^2.2.5 dependencies: '@webcomponents/template-shadowroot': 0.1.0 @@ -152,7 +152,7 @@ importers: '@astrojs/solid-js': ^1.1.0 '@astrojs/svelte': ^1.0.0 '@astrojs/vue': ^1.0.0 - astro: ^1.1.0 + astro: ^1.1.1 preact: ^10.7.3 react: ^18.1.0 react-dom: ^18.1.0 @@ -177,7 +177,7 @@ importers: examples/framework-preact: specifiers: '@astrojs/preact': ^1.0.2 - astro: ^1.1.0 + astro: ^1.1.1 preact: ^10.7.3 dependencies: preact: 10.10.6 @@ -190,7 +190,7 @@ importers: '@astrojs/react': ^1.1.0 '@types/react': ^18.0.10 '@types/react-dom': ^18.0.5 - astro: ^1.1.0 + astro: ^1.1.1 react: ^18.1.0 react-dom: ^18.1.0 dependencies: @@ -205,7 +205,7 @@ importers: examples/framework-solid: specifiers: '@astrojs/solid-js': ^1.1.0 - astro: ^1.1.0 + astro: ^1.1.1 solid-js: ^1.4.3 dependencies: solid-js: 1.4.8 @@ -216,7 +216,7 @@ importers: examples/framework-svelte: specifiers: '@astrojs/svelte': ^1.0.0 - astro: ^1.1.0 + astro: ^1.1.1 svelte: ^3.48.0 dependencies: svelte: 3.49.0 @@ -227,7 +227,7 @@ importers: examples/framework-vue: specifiers: '@astrojs/vue': ^1.0.0 - astro: ^1.1.0 + astro: ^1.1.1 vue: ^3.2.37 dependencies: vue: 3.2.37 @@ -237,20 +237,20 @@ importers: examples/minimal: specifiers: - astro: ^1.1.0 + astro: ^1.1.1 devDependencies: astro: link:../../packages/astro examples/non-html-pages: specifiers: - astro: ^1.1.0 + astro: ^1.1.1 devDependencies: astro: link:../../packages/astro examples/portfolio: specifiers: '@astrojs/preact': ^1.0.2 - astro: ^1.1.0 + astro: ^1.1.1 preact: ^10.7.3 sass: ^1.52.2 dependencies: @@ -264,7 +264,7 @@ importers: specifiers: '@astrojs/node': ^1.0.0 '@astrojs/svelte': ^1.0.0 - astro: ^1.1.0 + astro: ^1.1.1 concurrently: ^7.2.1 lightcookie: ^1.0.25 svelte: ^3.48.0 @@ -284,7 +284,7 @@ importers: examples/subpath: specifiers: '@astrojs/react': ^1.1.0 - astro: ^1.1.0 + astro: ^1.1.1 react: ^18.1.0 react-dom: ^18.1.0 dependencies: @@ -297,7 +297,7 @@ importers: examples/with-markdown-plugins: specifiers: '@astrojs/markdown-remark': ^1.1.0 - astro: ^1.1.0 + astro: ^1.1.1 hast-util-select: 5.0.1 rehype-autolink-headings: ^6.1.1 rehype-slug: ^5.0.1 @@ -315,7 +315,7 @@ importers: examples/with-markdown-shiki: specifiers: '@astrojs/markdown-remark': ^1.1.0 - astro: ^1.1.0 + astro: ^1.1.1 devDependencies: '@astrojs/markdown-remark': link:../../packages/markdown/remark astro: link:../../packages/astro @@ -324,7 +324,7 @@ importers: specifiers: '@astrojs/mdx': ^0.10.2 '@astrojs/preact': ^1.0.2 - astro: ^1.1.0 + astro: ^1.1.1 preact: ^10.6.5 devDependencies: '@astrojs/mdx': link:../../packages/integrations/mdx @@ -336,7 +336,7 @@ importers: specifiers: '@astrojs/preact': ^1.0.2 '@nanostores/preact': ^0.1.3 - astro: ^1.1.0 + astro: ^1.1.1 nanostores: ^0.5.12 preact: ^10.7.3 dependencies: @@ -350,7 +350,7 @@ importers: examples/with-tailwindcss: specifiers: '@astrojs/tailwind': ^1.0.0 - astro: ^1.1.0 + astro: ^1.1.1 autoprefixer: ^10.4.7 canvas-confetti: ^1.5.1 postcss: ^8.4.14 @@ -365,7 +365,7 @@ importers: examples/with-vite-plugin-pwa: specifiers: - astro: ^1.1.0 + astro: ^1.1.1 vite-plugin-pwa: 0.11.11 workbox-window: ^6.5.3 devDependencies: @@ -375,7 +375,7 @@ importers: examples/with-vitest: specifiers: - astro: ^1.1.0 + astro: ^1.1.1 vitest: ^0.20.3 devDependencies: astro: link:../../packages/astro