Skip to content

chore(deps): bump vite-plus to v0.2.2#7

Draft
fengmk2 wants to merge 1 commit into
masterfrom
update-vite-plus-prerelease-test-0.2.2
Draft

chore(deps): bump vite-plus to v0.2.2#7
fengmk2 wants to merge 1 commit into
masterfrom
update-vite-plus-prerelease-test-0.2.2

Conversation

@fengmk2

@fengmk2 fengmk2 commented Jul 2, 2026

Copy link
Copy Markdown
Owner

Summary

Bump vite-plus and 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) and vitest pinned to the commit build across deps / overrides / catalogs
  • minimumReleaseAge enabled with the vite-plus / @voidzero-dev/* / oxc / oxlint stack excluded
  • .npmrc (or .yarnrc.yml) points the package manager at the registry bridge (prerelease scaffolding)

Test plan

  • CI passes

@fengmk2 fengmk2 self-assigned this Jul 2, 2026

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request configures a custom registry bridge in .npmrc, updates package dependencies to use the pnpm catalog, defines release exclusion rules in pnpm-workspace.yaml, and updates test files to import vi from vite-plus/test instead of vitest. The reviewer suggests several cleanups: removing redundant commit-pinned versions from the minimumReleaseAgeExclude list, and removing direct devDependencies (@vitest/coverage-v8, vite, and vitest) along with their catalog entries, as they are transitively managed by vite-plus.

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.

Comment thread pnpm-workspace.yaml
Comment on lines +15 to +25
- rolldown
- "@voidzero-dev/vite-plus-core@0.0.0-commit.1d7ba811f0e456640b0e761e8e8acf77d1ad3251"
- "@voidzero-dev/vite-plus-darwin-arm64@0.0.0-commit.1d7ba811f0e456640b0e761e8e8acf77d1ad3251"
- "@voidzero-dev/vite-plus-darwin-x64@0.0.0-commit.1d7ba811f0e456640b0e761e8e8acf77d1ad3251"
- "@voidzero-dev/vite-plus-linux-arm64-gnu@0.0.0-commit.1d7ba811f0e456640b0e761e8e8acf77d1ad3251"
- "@voidzero-dev/vite-plus-linux-arm64-musl@0.0.0-commit.1d7ba811f0e456640b0e761e8e8acf77d1ad3251"
- "@voidzero-dev/vite-plus-linux-x64-gnu@0.0.0-commit.1d7ba811f0e456640b0e761e8e8acf77d1ad3251"
- "@voidzero-dev/vite-plus-linux-x64-musl@0.0.0-commit.1d7ba811f0e456640b0e761e8e8acf77d1ad3251"
- "@voidzero-dev/vite-plus-win32-arm64-msvc@0.0.0-commit.1d7ba811f0e456640b0e761e8e8acf77d1ad3251"
- "@voidzero-dev/vite-plus-win32-x64-msvc@0.0.0-commit.1d7ba811f0e456640b0e761e8e8acf77d1ad3251"
- "vite-plus@0.0.0-commit.1d7ba811f0e456640b0e761e8e8acf77d1ad3251"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The specific commit-pinned versions for @voidzero-dev/vite-plus-* and vite-plus are redundant because the wildcard patterns "@voidzero-dev/*" and vite-plus are already defined in the minimumReleaseAgeExclude list. Removing these specific versions simplifies the configuration and prevents it from becoming stale on future updates.

  - rolldown

Comment thread package.json
Comment on lines 66 to 68
"devDependencies": {
"@vitest/coverage-v8": "^4.1.6",
"@vitest/coverage-v8": "catalog:",
"async": "^3.2.6",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Since vite-plus transitively manages and ships vitest and its coverage tools, @vitest/coverage-v8 does not need to be listed as a direct devDependency in package.json.

Suggested change
"devDependencies": {
"@vitest/coverage-v8": "^4.1.6",
"@vitest/coverage-v8": "catalog:",
"async": "^3.2.6",
"devDependencies": {
"async": "^3.2.6",

Comment thread package.json
Comment on lines 76 to 80
"vinyl-source-stream": "^2.0.0",
"vite-plus": "catalog:"
"vite": "catalog:",
"vite-plus": "catalog:",
"vitest": "catalog:"
},

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Since vite-plus transitively manages and ships vite and vitest as direct dependencies, they do not need to be listed as direct devDependencies in package.json.

    "vinyl-source-stream": "^2.0.0",
    "vite-plus": "catalog:"
  },

Comment thread pnpm-workspace.yaml
Comment on lines +32 to +33
vite-plus: 0.0.0-commit.1d7ba811f0e456640b0e761e8e8acf77d1ad3251
"@vitest/coverage-v8": 4.1.9

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Since @vitest/coverage-v8 is no longer directly used in package.json, it can be removed from the catalog section.

  vite-plus: 0.0.0-commit.1d7ba811f0e456640b0e761e8e8acf77d1ad3251

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant