chore(deps): bump vite-plus to v0.2.0#23
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates several dependencies, including vite-plus, vitest, and vite overrides, to use specific pre-release builds or version 4.1.9. It also adds pnpm configurations (minimumReleaseAge, minimumReleaseAgeExclude, and blockExoticSubdeps) to pnpm-workspace.yaml. Feedback indicates that these configuration options are placed in the wrong file and format; they must be moved to .npmrc using kebab-case to prevent them from being silently ignored by pnpm.
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.
| minimumReleaseAge: 60 | ||
| minimumReleaseAgeExclude: | ||
| - '@voidzero-dev/*' | ||
| - vite-plus | ||
| - '@vitest/*' | ||
| - vite | ||
| - vitest | ||
| - '@oxc-project/*' | ||
| - '@oxlint/*' | ||
| - oxlint | ||
| - oxfmt | ||
| - oxlint-tsgolint | ||
|
|
||
| blockExoticSubdeps: false |
There was a problem hiding this comment.
The settings minimumReleaseAge, minimumReleaseAgeExclude, and blockExoticSubdeps are pnpm configuration options. In pnpm, these settings must be defined in the .npmrc file using kebab-case (e.g., minimum-release-age, minimum-release-age-exclude, and block-exotic-subdeps), rather than in pnpm-workspace.yaml in camelCase.\n\nPlacing them here will cause them to be silently ignored by pnpm.\n\nPlease move these configurations to your .npmrc file:\n\nini\nminimum-release-age=60\nminimum-release-age-exclude[]=@voidzero-dev/*\nminimum-release-age-exclude[]=vite-plus\nminimum-release-age-exclude[]=@vitest/*\nminimum-release-age-exclude[]=vite\nminimum-release-age-exclude[]=vitest\nminimum-release-age-exclude[]=@oxc-project/*\nminimum-release-age-exclude[]=@oxlint/*\nminimum-release-age-exclude[]=oxlint\nminimum-release-age-exclude[]=oxfmt\nminimum-release-age-exclude[]=oxlint-tsgolint\nblock-exotic-subdeps=false\n
# Note: pnpm configuration options (minimumReleaseAge, etc.) must be defined in .npmrc
e18e dependency analysisNo dependency warnings found. |
Summary
Bump
vite-plusand related packages to the pkg.pr.new prerelease build for v0.2.0.Updated where applicable:
vite-plus-> pkg.pr.new buildvite(alias/override ->@voidzero-dev/vite-plus-core)vitestpinned to bundled4.1.9(the@voidzero-dev/vite-plus-testwrapper was removed upstream; vitest is now plain upstream)@vitest/browser-playwrightadded (4.1.9) since the browser provider is now an optional peer dep used byvite.config.tsminimumReleaseAgeenabled with vite-plus packages excluded (pnpm/bun/npm as applicable)Test plan