Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/client-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"@vitejs/plugin-react-swc": "^4.3.0",
"jsdom": "^29.1.0",
"prettier": "^3.5.3",
"vite": "^5.4.19",
"vite": "^8.1.4",
"vitest": "^3.2.4"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion examples/guide-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"globals": "^16.0.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.61.0",
"vite": "^5.4.19"
"vite": "^8.1.4"
},
"engines": {
"node": "22.17.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"rimraf": "^6.0.1",
"rollup": "^4.46.2",
"typescript": "^5.8.3",
"vite": "^5.4.19",
"vite": "^8.1.4",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Vitest 3 cannot use Vite 8

High Severity

Packages now declare vite ^8.1.4 alongside vitest ^3.2.4. Vitest 3.2.4 depends on Vite ^5 || ^6 || ^7, and the lockfile resolves a separate vite@7.3.1 for it. Builds and tests can run on different Vite majors, which is unsupported for Vite 8.

Additional Locations (2)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit b919714. Configure here.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Codecov plugin peers exclude Vite 8

Medium Severity

@codecov/vite-plugin@^2.0.1 still peers on Vite 4.x || 5.x || 6.x only, but this PR moves package builds to Vite 8. Bundle analysis uploads (when CODECOV_TOKEN is set) run through an unsupported plugin pairing.

Additional Locations (2)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit b919714. Configure here.

"vitest": "^3.2.4"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/expo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"react-native-gesture-handler": "~2.30.0",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"vite": "^5.4.19",
"vite": "^8.1.4",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-no-bundle": "^4.0.0",
"vitest": "^3.2.4"
Expand Down
2 changes: 1 addition & 1 deletion packages/react-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"rimraf": "^6.0.1",
"rollup-plugin-execute": "^1.1.1",
"typescript": "^5.8.3",
"vite": "^5.4.19",
"vite": "^8.1.4",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-no-bundle": "^4.0.0",
"vitest": "^3.2.4"
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"react-native-gesture-handler": "~2.30.0",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"vite": "^5.4.19",
"vite": "^8.1.4",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-no-bundle": "^4.0.0"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
"rollup-plugin-execute": "^1.1.1",
"rollup-preserve-directives": "^1.1.3",
"typescript": "^5.8.3",
"vite": "^5.4.19",
"vite": "^8.1.4",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Plugin-react incompatible with Vite 8

High Severity

vite is bumped to ^8.1.4 while @vitejs/plugin-react stays at ^4.5.1, whose peer range only allows Vite ^4.2 || ^5 || ^6. Vite 8 support landed in @vitejs/plugin-react@5.2.0, so React library builds and example apps that rely on this plugin are on an unsupported pairing and may fail under Rolldown.

Additional Locations (2)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit b919714. Configure here.

"vite-plugin-dts": "^4.5.0",
"vite-plugin-no-bundle": "^4.0.0",
"vitest": "^3.2.4",
Expand Down
Loading
Loading