Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
meta(nuxt): Require minimum Nuxt v3.7.0 (#14473)
This PR adds a minimum required version for the Nuxt SDK. Version 3.7.0 was selected because this version adds the possibility to set client source maps to `'hidden'` ([PR here](nuxt/nuxt#22787)). However, as the SDK relies on other versions as well (see below, at the bottom), those packages need to be manually bumped (in case the lock-file is not updated yet). **Nuxt 3.7.0** at least supports the correct version range: ["nitropack": "^2.6.1"](https://github.com/nuxt/nuxt/blob/v3.7.0/packages/nuxt/package.json#L84) ["ofetch": "^1.3.3"](https://github.com/nuxt/nuxt/blob/v3.7.0/packages/nuxt/package.json#L87) Above **Nuxt v3.14.0**, everything works out of the box, as the versions are already updated: ["nitropack": "^2.10.2"](https://github.com/nuxt/nuxt/blob/v3.14.0/packages/nuxt/package.json#L97) ["ofetch": "^1.4.1"](https://github.com/nuxt/nuxt/blob/v3.14.0/packages/nuxt/package.json#L100) #### Minimum versions, the SDK relies on: - `nitropack` 2.10.0: for the correct peerDependency of `@vercel/nft` - `ofetch` 1.4.0: for being able to patch `$fetch`
- Loading branch information