-
Notifications
You must be signed in to change notification settings - Fork 114
Update dependency vite to v8 #643
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: main
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 |
|---|---|---|
|
|
@@ -27,7 +27,7 @@ | |
| "globals": "^17.0.0", | ||
| "typescript": "~5.7.3", | ||
| "typescript-eslint": "^8.56.1", | ||
| "vite": "^6.4.1", | ||
| "vite": "^8.0.0", | ||
|
Contributor
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. 🔴
Prompt for agentsWas this helpful? React with 👍 or 👎 to provide feedback. |
||
| "vite-plugin-singlefile": "^2.3.0" | ||
| } | ||
| } | ||
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.
🟡
vite-plugin-singlefile@2.3.0does not support Vite 8 in its peer dependenciesThe
vite-plugin-singlefileis locked to version2.3.0in the lockfile, which declares peer dependencyvite: ^5.4.11 || ^6.0.0 || ^7.0.0— Vite 8 is not included. This is confirmed by the lockfile (pnpm-lock.yaml) which showsvite-plugin-singlefile@2.3.0resolved againstvite@8.0.10despite the incompatible peer constraint. The fix is straightforward:vite-plugin-singlefile@2.3.3(within the^2.3.0specifier range) adds^8.0.0to its vite peer dependency. Regenerating the lockfile (or bumping the specifier) would resolve to 2.3.3 and fix the mismatch.Prompt for agents
Was this helpful? React with 👍 or 👎 to provide feedback.