upgrade to vite-plus 0.2.0#826
Conversation
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
commit: |
There was a problem hiding this comment.
Code Review
This pull request configures a pnpm catalog in pnpm-workspace.yaml for managing vite, vite-plus, and vitest dependencies, updates package.json and pnpm-lock.yaml to use these catalog definitions, and adds VS Code settings to use the OXC formatter. Feedback on these changes suggests removing a redundant language-specific formatter override for [javascriptreact] in .vscode/settings.json and explicitly specifying version ^0.2.0 for vite and vite-plus in the workspace catalog to ensure the intended upgrade is correctly locked.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| vite: npm:@voidzero-dev/vite-plus-core@latest | ||
| vitest: 4.1.9 | ||
| vite-plus: latest |
There was a problem hiding this comment.
The PR title indicates an upgrade to vite-plus version 0.2.0. However, using latest for vite and vite-plus currently resolves to 0.1.24 in pnpm-lock.yaml. To ensure the upgrade to 0.2.0 is correctly applied and locked, please specify ^0.2.0 explicitly in the catalog and regenerate the lockfile.
vite: npm:@voidzero-dev/vite-plus-core@^0.2.0
vitest: 4.1.9
vite-plus: ^0.2.0| "editor.defaultFormatter": "oxc.oxc-vscode", | ||
| "[javascriptreact]": { | ||
| "editor.defaultFormatter": "oxc.oxc-vscode" | ||
| }, |
There was a problem hiding this comment.
Since editor.defaultFormatter is set globally to oxc.oxc-vscode on line 21, the language-specific override for [javascriptreact] is redundant and can be removed.
| "editor.defaultFormatter": "oxc.oxc-vscode", | |
| "[javascriptreact]": { | |
| "editor.defaultFormatter": "oxc.oxc-vscode" | |
| }, | |
| "editor.defaultFormatter": "oxc.oxc-vscode", |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #826 +/- ##
=======================================
Coverage 94.91% 94.91%
=======================================
Files 10 10
Lines 747 747
Branches 235 235
=======================================
Hits 709 709
Misses 35 35
Partials 3 3 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
|
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
No description provided.