diff --git a/.changeset/dirty-socks-invite.md b/.changeset/dirty-socks-invite.md deleted file mode 100644 index 89805e469..000000000 --- a/.changeset/dirty-socks-invite.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'preact-cli': patch ---- - -Allows users to author prerender-urls.js as ESM once again diff --git a/.changeset/five-peas-brake.md b/.changeset/five-peas-brake.md deleted file mode 100644 index 9e6391391..000000000 --- a/.changeset/five-peas-brake.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'preact-cli': minor ---- - -Supports consuming "proxy" from package.json to proxy API requests in watch mode diff --git a/.changeset/olive-roses-judge.md b/.changeset/olive-roses-judge.md deleted file mode 100644 index 50de379f3..000000000 --- a/.changeset/olive-roses-judge.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'preact-cli': patch ---- - -Fixed bug in push-manifest that would result in undefined entries diff --git a/.changeset/purple-chefs-yell.md b/.changeset/purple-chefs-yell.md deleted file mode 100644 index 8167d6d31..000000000 --- a/.changeset/purple-chefs-yell.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'preact-cli': patch ---- - -Corrects 'build --json' ouput location and 'apple-touch-icon' will respect the publicPath automatically diff --git a/.changeset/stupid-suns-crash.md b/.changeset/stupid-suns-crash.md deleted file mode 100644 index 1454c3b0e..000000000 --- a/.changeset/stupid-suns-crash.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'preact-cli': minor ---- - -Any environment variables prefixed with 'PREACT_APP_' will automatically be available for reference and use in your application without having to configure `DefinePlugin` any more. Furthermore, if a `.env` file exists in the root of your application, any variables it defines will automatically be available for use. - -Huge shout out to [robinvdvleuten](https://github.com/robinvdvleuten) who provided this functionality through the [`preact-cli-plugin-env-vars`](https://github.com/robinvdvleuten/preact-cli-plugin-env-vars) package in the past. diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 2d0ccc2fc..b7889ca23 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,23 @@ # preact-cli +## 3.4.0 + +### Minor Changes + +- [#1674](https://github.com/preactjs/preact-cli/pull/1674) [`0346549`](https://github.com/preactjs/preact-cli/commit/0346549a2a42b7cb1edf48df5871c47a621df57d) Thanks [@rschristian](https://github.com/rschristian)! - Supports consuming "proxy" from package.json to proxy API requests in watch mode + +* [#1671](https://github.com/preactjs/preact-cli/pull/1671) [`8d3bd42`](https://github.com/preactjs/preact-cli/commit/8d3bd42759c72ed0cf2f7b8e6be11e109090c2e9) Thanks [@rschristian](https://github.com/rschristian)! - Any environment variables prefixed with 'PREACT*APP*' will automatically be available for reference and use in your application without having to configure `DefinePlugin` any more. Furthermore, if a `.env` file exists in the root of your application, any variables it defines will automatically be available for use. + + Huge shout out to [robinvdvleuten](https://github.com/robinvdvleuten) who provided this functionality through the [`preact-cli-plugin-env-vars`](https://github.com/robinvdvleuten/preact-cli-plugin-env-vars) package in the past. + +### Patch Changes + +- [#1667](https://github.com/preactjs/preact-cli/pull/1667) [`a56d904`](https://github.com/preactjs/preact-cli/commit/a56d904ee0a213109a0e6090ab4e8e575b382001) Thanks [@rschristian](https://github.com/rschristian)! - Allows users to author prerender-urls.js as ESM once again + +* [#1680](https://github.com/preactjs/preact-cli/pull/1680) [`fcd0375`](https://github.com/preactjs/preact-cli/commit/fcd0375a947b9d7778fb4a393999468fc48ad79f) Thanks [@rschristian](https://github.com/rschristian)! - Fixed bug in push-manifest that would result in undefined entries + +- [#1670](https://github.com/preactjs/preact-cli/pull/1670) [`7afd8bb`](https://github.com/preactjs/preact-cli/commit/7afd8bbf979cb36f1a3dd3b29de2f3db8368de48) Thanks [@rschristian](https://github.com/rschristian)! - Corrects 'build --json' ouput location and 'apple-touch-icon' will respect the publicPath automatically + ## 3.3.5 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index dd208fffe..6a8d27aca 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "preact-cli", - "version": "3.3.5", + "version": "3.4.0", "description": "Start building a Preact Progressive Web App in seconds.", "repository": "preactjs/preact-cli", "main": "lib/index.js",