chore(deps): bump vite-plus to v0.2.0#9
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates dependency versions across the project, notably upgrading vitest to 4.1.9 and switching vite-plus to a specific PR build URL. Corresponding lockfile updates include upgrading oxlint to 1.70.0, oxfmt to 0.55.0, and adding new Vitest browser testing packages. Additionally, .npmrc is updated to lower the minimum release age and exclude certain packages from this rule. Feedback on these changes highlights that the @oxfmt/* scoped packages are missing from the min-release-age-exclude list, which could cause installation or runtime failures.
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.
| ignore-scripts=true | ||
| min-release-age=3 | ||
| min-release-age=1 | ||
| min-release-age-exclude=vite-plus,@voidzero-dev/*,@oxc-project/*,@oxlint/*,oxlint,oxfmt,oxlint-tsgolint |
There was a problem hiding this comment.
The @oxfmt/* scoped packages (which contain the platform-specific binary bindings for oxfmt, such as @oxfmt/binding-darwin-arm64) are missing from the min-release-age-exclude list.
Since oxfmt and its platform bindings are published together, if a new version is installed within the minimum release age window, the main oxfmt package will be allowed, but its required binary bindings under @oxfmt/* will be blocked. This will lead to installation or runtime failures.
Please add @oxfmt/* to the exclusion list.
min-release-age-exclude=vite-plus,@voidzero-dev/*,@oxc-project/*,@oxlint/*,@oxfmt/*,oxlint,oxfmt,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