-
Notifications
You must be signed in to change notification settings - Fork 10
chore(deps): update dependency @vitejs/plugin-react to v6 #202
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 |
|---|---|---|
|
|
@@ -21,7 +21,7 @@ | |
| "@eslint/js": "^9.39.1", | ||
| "@types/react": "^19.2.7", | ||
| "@types/react-dom": "^19.2.3", | ||
| "@vitejs/plugin-react": "^5.1.1", | ||
| "@vitejs/plugin-react": "^6.0.0", | ||
|
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. Lockfile not updated for major dependency bumpMedium Severity The Reviewed by Cursor Bugbot for commit dfc265f. Configure here. |
||
| "eslint": "^9.39.1", | ||
| "eslint-plugin-react-hooks": "^7.0.1", | ||
| "eslint-plugin-react-refresh": "^0.5.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.
Plugin-react v6 requires Vite 8, project uses Vite 7
High Severity
@vitejs/plugin-reactv6 dropped support for Vite 7 and below, requiringvite@^8.0.0as a peer dependency. The project still specifies"vite": "^7.3.1", which is incompatible. This will cause a peer dependency conflict duringnpm installand the plugin will not function correctly at runtime since v6 relies on Vite 8's native Oxc-based React Refresh Transform. Thevitedependency needs to be upgraded to^8.0.0alongside this change.Additional Locations (1)
example/webview_demo/package.json#L28-L29Reviewed by Cursor Bugbot for commit a1de315. Configure here.