diff --git a/.changeset/nine-impalas-wave.md b/.changeset/nine-impalas-wave.md deleted file mode 100644 index 492320ae..00000000 --- a/.changeset/nine-impalas-wave.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@opennextjs/cloudflare": minor ---- - -feat: cli arg to disable minification - -The cache handler currently forces minification. There is now a CLI arg to disable minification for the build. At the moment, this only applies to the cache handler but may be used for other parts of the build in the future when minification is introduced to them. By default, minification is enabled, but can be disabled by passing `--noMinify`. diff --git a/packages/cloudflare/CHANGELOG.md b/packages/cloudflare/CHANGELOG.md index dc4237e9..6f4bb842 100644 --- a/packages/cloudflare/CHANGELOG.md +++ b/packages/cloudflare/CHANGELOG.md @@ -1,5 +1,13 @@ # @opennextjs/cloudflare +## 0.2.0 + +### Minor Changes + +- 6acf0fd: feat: cli arg to disable minification + + The cache handler currently forces minification. There is now a CLI arg to disable minification for the build. At the moment, this only applies to the cache handler but may be used for other parts of the build in the future when minification is introduced to them. By default, minification is enabled, but can be disabled by passing `--noMinify`. + ## 0.1.1 ### Patch Changes diff --git a/packages/cloudflare/package.json b/packages/cloudflare/package.json index 56bc5743..375390db 100644 --- a/packages/cloudflare/package.json +++ b/packages/cloudflare/package.json @@ -1,7 +1,7 @@ { "name": "@opennextjs/cloudflare", "description": "Cloudflare builder for next apps", - "version": "0.1.1", + "version": "0.2.0", "scripts": { "build": "tsup", "build:watch": "tsup --watch src",