diff --git a/.changeset/init-mail-package.md b/.changeset/init-mail-package.md deleted file mode 100644 index d799895..0000000 --- a/.changeset/init-mail-package.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@mintel/mail": minor ---- - -Initial release of the branded email system package. diff --git a/packages/mail/CHANGELOG.md b/packages/mail/CHANGELOG.md new file mode 100644 index 0000000..11c6be6 --- /dev/null +++ b/packages/mail/CHANGELOG.md @@ -0,0 +1,7 @@ +# @mintel/mail + +## 1.7.0 + +### Minor Changes + +- 96ec2c7: Initial release of the branded email system package. diff --git a/packages/mail/package.json b/packages/mail/package.json index 6344c26..3f83d08 100644 --- a/packages/mail/package.json +++ b/packages/mail/package.json @@ -1,6 +1,6 @@ { "name": "@mintel/mail", - "version": "1.6.0", + "version": "1.7.0", "private": false, "publishConfig": { "access": "public", diff --git a/packages/next-config/CHANGELOG.md b/packages/next-config/CHANGELOG.md index 662f665..6b37e4d 100644 --- a/packages/next-config/CHANGELOG.md +++ b/packages/next-config/CHANGELOG.md @@ -1,5 +1,11 @@ # @mintel/next-config +## 1.6.1 + +### Patch Changes + +- Add `turbopack: {}` to support Next.js 16 default Turbopack behavior when a webpack config is present. + ## 1.0.1 ### Patch Changes diff --git a/packages/next-config/index.js b/packages/next-config/index.js index aa345bf..2163f06 100644 --- a/packages/next-config/index.js +++ b/packages/next-config/index.js @@ -7,6 +7,7 @@ import path from "node:path"; /** @type {import('next').NextConfig} */ export const baseNextConfig = { output: "standalone", + turbopack: {}, images: { dangerouslyAllowSVG: true, contentDispositionType: "attachment", diff --git a/packages/next-config/package.json b/packages/next-config/package.json index e74af00..39ee389 100644 --- a/packages/next-config/package.json +++ b/packages/next-config/package.json @@ -1,6 +1,6 @@ { "name": "@mintel/next-config", - "version": "1.6.0", + "version": "1.6.1", "publishConfig": { "access": "public", "registry": "https://npm.infra.mintel.me"