chore(deps): bump vite-plus to v0.2.2#10
Conversation
There was a problem hiding this comment.
Code Review
This pull request migrates test imports from 'vitest' to 'vite-plus/test' across all packages and templates, and updates dependencies to use prerelease commit builds of 'vite-plus' and related packages. It also configures a registry bridge in '.npmrc'. However, a critical issue was identified in '.npmrc' where 'min-release-age-exclude' is not supported by npm, which will cause package installation to fail for freshly published prerelease builds.
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.
| min-release-age=1 | ||
| min-release-age-exclude=vite-plus,@voidzero-dev/*,@oxc-project/*,@oxlint/*,@oxfmt/*,@oxlint-tsgolint/*,oxlint,oxfmt,oxlint-tsgolint |
There was a problem hiding this comment.
In npm (the package manager used in this repository, as indicated by package-lock.json), the min-release-age configuration is supported, but package exclusions via min-release-age-exclude (or minimum-release-age-exclude) are not supported.\n\nThe original PR that proposed exclusions (npm/cli#8825) was rejected in favor of a simpler implementation (npm/cli#8965), and the exclusion feature is currently tracked under the open issue npm/cli#8994.\n\nBecause npm does not support exclusions, it will apply the min-release-age=1 (1 day) gate to all packages, including vite-plus and @voidzero-dev/*. Since the prerelease commit builds are freshly published, npm install or npm ci will fail to resolve them.\n\nTo allow the prerelease smoke-test to pass, you will need to temporarily disable the release age gate by commenting out or removing these lines, or running the installation with --min-release-age=0.
# min-release-age=1
# min-release-age-exclude=vite-plus,@voidzero-dev/*,@oxc-project/*,@oxlint/*,@oxfmt/*,@oxlint-tsgolint/*,oxlint,oxfmt,oxlint-tsgolint
Summary
Bump
vite-plusand related packages to the pkg.pr.new prerelease build for v0.2.2 (registry-bridge commit build) to smoke-test the prerelease.vite-plus+vite(alias to@voidzero-dev/vite-plus-core) andvitestpinned to the commit build across deps / overrides / catalogsminimumReleaseAgeenabled with thevite-plus/@voidzero-dev/*/ oxc / oxlint stack excluded.npmrc(or.yarnrc.yml) points the package manager at the registry bridge (prerelease scaffolding)Test plan