Skip to content
Closed
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 helm-frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@
"tailwindcss": "^3.3.3",
"typescript": "^5.0.2",
"vite": "^4.5.3",
"vitest": "^0.33.0"
"vitest": "^4.1.0"

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Incompatible vite version with vitest 4.1.0 dependency

High Severity

The vite dependency remains at ^4.5.3 while the upgraded vitest@^4.1.0 requires vite "^6.0.0 || ^7.0.0 || ^8.0.0-0". This results in two incompatible vite versions in the lockfile (4.5.3 for the project, 8.0.16 for vitest). The vite.config.ts imports defineConfig from vitest/config (backed by vite 8.x) but also imports ViteDevServer from vite (which resolves to 4.x), creating type and runtime incompatibilities. The build.rollupOptions config is also potentially broken since vite 8 uses rolldown instead of rollup. Tests will likely fail or behave inconsistently.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 70aaacb. Configure here.

}
}
Loading