diff --git a/.changeset/metal-lions-try.md b/.changeset/metal-lions-try.md deleted file mode 100644 index c70a2f872..000000000 --- a/.changeset/metal-lions-try.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Bugfix: do not override user `alias` passed into snowpack config diff --git a/.changeset/nasty-tomatoes-listen.md b/.changeset/nasty-tomatoes-listen.md deleted file mode 100644 index 77548971f..000000000 --- a/.changeset/nasty-tomatoes-listen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'create-astro': minor ---- - -Update `create-astro` to handle framework-specific logic based on user preference diff --git a/.changeset/pretty-windows-bow.md b/.changeset/pretty-windows-bow.md deleted file mode 100644 index ea6734e8b..000000000 --- a/.changeset/pretty-windows-bow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Add command line flag `--silent` to astro to set no output. diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json index 9b184b798..4d290bd2c 100644 --- a/examples/blog-multiple-authors/package.json +++ b/examples/blog-multiple-authors/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.1" + "astro": "^0.16.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/blog/package.json b/examples/blog/package.json index 856795e4d..664e4d8c6 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.1" + "astro": "^0.16.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/docs/package.json b/examples/docs/package.json index 5879b060b..2bac37fdc 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.1" + "astro": "^0.16.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 3e544d356..3f6a64ccd 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.1" + "astro": "^0.16.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 0fd2eba40..dd2f10a7e 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.1" + "astro": "^0.16.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 669ffe8cb..07edbb5a6 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.1" + "astro": "^0.16.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 0d6bc3429..f18641da1 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.1" + "astro": "^0.16.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index ed569bdef..002ae6db3 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.1" + "astro": "^0.16.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 5cb1ec672..bf0c024f6 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.1" + "astro": "^0.16.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/snowpack/package.json b/examples/snowpack/package.json index 6e945825f..c01c57fe3 100644 --- a/examples/snowpack/package.json +++ b/examples/snowpack/package.json @@ -11,7 +11,7 @@ "lint": "prettier --check \"src/**/*.js\"" }, "dependencies": { - "astro": "^0.16.1", + "astro": "^0.16.2", "date-fns": "^2.19.0", "deepmerge": "^4.2.2", "docsearch.js": "^2.6.3", @@ -25,7 +25,7 @@ "@11ty/eleventy-plugin-syntaxhighlight": "^3.0.4", "@contentful/rich-text-html-renderer": "^14.1.2", "@contentful/rich-text-types": "^14.1.2", - "astro": "^0.16.1", + "astro": "^0.16.2", "eleventy-plugin-nesting-toc": "^1.2.0", "luxon": "^1.25.0", "markdown-it": "^12.0.2", diff --git a/examples/starter/package.json b/examples/starter/package.json index 45a309a2c..6b562fc31 100644 --- a/examples/starter/package.json +++ b/examples/starter/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.1" + "astro": "^0.16.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index 40bb9e6a0..31a44f968 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.1", + "astro": "^0.16.2", "rehype-add-classes": "^1.0.0", "rehype-toc": "^3.0.2", "remark-autolink-headings": "^6.0.1", diff --git a/examples/with-markdown/package.json b/examples/with-markdown/package.json index 8e4b27b82..177dc030b 100644 --- a/examples/with-markdown/package.json +++ b/examples/with-markdown/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.1" + "astro": "^0.16.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index edc500aa8..98d072de5 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -7,7 +7,7 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.1" + "astro": "^0.16.2" }, "dependencies": { "nanostores": "^0.3.3" diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 88d8fef56..95f9230d4 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -8,7 +8,7 @@ }, "devDependencies": { "tailwindcss": "^2.1.2", - "astro": "^0.16.1" + "astro": "^0.16.2" }, "snowpack": { "workspaceRoot": "../.." diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 2266c1d49..b54e32bc8 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,12 @@ # astro +## 0.16.2 + +### Patch Changes + +- 20b4a60: Bugfix: do not override user `alias` passed into snowpack config +- 42a1fd7: Add command line flag `--silent` to astro to set no output. + ## 0.16.1 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index be3a8e368..c27a504ba 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "0.16.1", + "version": "0.16.2", "author": "Skypack", "license": "MIT", "type": "module", diff --git a/packages/create-astro/CHANGELOG.md b/packages/create-astro/CHANGELOG.md index cd373af50..b766585f2 100644 --- a/packages/create-astro/CHANGELOG.md +++ b/packages/create-astro/CHANGELOG.md @@ -1,5 +1,11 @@ # create-astro +## 0.4.0 + +### Minor Changes + +- 5d5d67c: Update `create-astro` to handle framework-specific logic based on user preference + ## 0.3.5 ### Patch Changes diff --git a/packages/create-astro/package.json b/packages/create-astro/package.json index f9ed461f6..c9d7fff64 100644 --- a/packages/create-astro/package.json +++ b/packages/create-astro/package.json @@ -1,6 +1,6 @@ { "name": "create-astro", - "version": "0.3.5", + "version": "0.4.0", "type": "module", "repository": { "type": "git", diff --git a/www/package.json b/www/package.json index f59e31b37..6ca04ed88 100644 --- a/www/package.json +++ b/www/package.json @@ -7,6 +7,6 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.16.1" + "astro": "^0.16.2" } }