chore(deps): bump vite-plus to v0.2.0#3
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the vite-plus dependency to a preview release URL, overrides vite and vitest versions, and updates the lockfile. It also attempts to configure minimumReleaseAge and minimumReleaseAgeExclude in pnpm-workspace.yaml. The reviewer correctly pointed out that these settings are .npmrc configuration options and will be silently ignored in pnpm-workspace.yaml, providing a suggestion to move them to .npmrc instead.
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 |
There was a problem hiding this comment.
The minimumReleaseAge and minimumReleaseAgeExclude settings are .npmrc configuration options (specifically minimum-release-age and minimum-release-age-exclude in pnpm v10), not valid fields for pnpm-workspace.yaml. Placing them here will cause pnpm to silently ignore them, meaning the security feature will not be active.
To fix this, these lines should be removed from pnpm-workspace.yaml and added to your .npmrc file at the root of the workspace:
minimum-release-age=60
minimum-release-age-exclude[]=@voidzero-dev/*
minimum-release-age-exclude[]=vite-plus
minimum-release-age-exclude[]=@vitest/*
minimum-release-age-exclude[]=vite
minimum-release-age-exclude[]=vitest
minimum-release-age-exclude[]=@oxc-project/*
minimum-release-age-exclude[]=@oxlint/*
minimum-release-age-exclude[]=oxlint
minimum-release-age-exclude[]=oxfmt
minimum-release-age-exclude[]=oxlint-tsgolint
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)minimumReleaseAgeenabled with vite-plus packages excluded (pnpm/bun/npm as applicable)Test plan