-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
fix(nuxt): Move @nuxt/kit to peer/dev deps to avoid duplicate on Nuxt 4
#22713
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -44,6 +44,7 @@ | |
| "access": "public" | ||
| }, | ||
| "peerDependencies": { | ||
| "@nuxt/kit": "^3.13.2 || ^4.0.0", | ||
| "nuxt": ">=3.7.0 || 4.x || 5.x", | ||
| "nitro": "2.x || 3.x" | ||
| }, | ||
|
|
@@ -53,7 +54,6 @@ | |
| } | ||
| }, | ||
| "dependencies": { | ||
| "@nuxt/kit": "^3.13.2", | ||
| "@sentry/browser": "10.67.0", | ||
| "@sentry/cloudflare": "10.67.0", | ||
| "@sentry/core": "10.67.0", | ||
|
|
@@ -64,6 +64,7 @@ | |
| "local-pkg": "^1.1.2" | ||
| }, | ||
| "devDependencies": { | ||
| "@nuxt/kit": "^3.13.2", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing fix regression testLow Severity This is a Triggered by project rule: PR Review Guidelines for Cursor Bot Reviewed by Cursor Bugbot for commit 25c909d. Configure here. |
||
| "@nuxt/nitro-server": "^3.21.6", | ||
| "nitro": "^3.0.260311-beta", | ||
| "nuxi": "^3.25.1", | ||
|
|
||


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Kit peer range mismatch
Medium Severity
Moving
@nuxt/kitto a required peer keeps the old^3.13.2floor, but thenuxtpeer still allows>=3.7.0and5.x. Nuxt ships kit in lockstep, so supported 3.7–3.12 apps and future Nuxt 5 apps will not satisfy this peer and can hit unmet-peer install failures or warnings. As a dependency that floor only constrained what the SDK installed; as a peer it now constrains host compatibility.Reviewed by Cursor Bugbot for commit 25c909d. Configure here.