Skip to content

chore(deps): bump vite-plus to v0.2.0#9

Draft
fengmk2 wants to merge 2 commits into
mainfrom
update-vite-plus-prerelease-test-0.2.0
Draft

chore(deps): bump vite-plus to v0.2.0#9
fengmk2 wants to merge 2 commits into
mainfrom
update-vite-plus-prerelease-test-0.2.0

Conversation

@fengmk2

@fengmk2 fengmk2 commented Jun 17, 2026

Copy link
Copy Markdown
Owner

Summary

Bump vite-plus and related packages to the pkg.pr.new prerelease build for v0.2.0.

Updated where applicable:

  • vite-plus -> pkg.pr.new build
  • vite (alias/override -> @voidzero-dev/vite-plus-core)
  • vitest pinned to bundled 4.1.9 (the @voidzero-dev/vite-plus-test wrapper was removed upstream; vitest is now plain upstream)
  • minimumReleaseAge enabled with vite-plus packages excluded (pnpm/bun/npm as applicable)

Test plan

  • CI passes

@fengmk2 fengmk2 self-assigned this Jun 17, 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 updates dependency configurations across the workspace, replacing standard registry versions of vite and vite-plus with temporary pkg.pr.new URLs and bumping vitest to version 4.1.9. Feedback highlights that using temporary pkg.pr.new URLs in the template package.json will cause installation failures for end-users once those builds are garbage-collected, and suggests using standard npm registry versions instead. Additionally, it is recommended to use the catalog: specifier in the overrides section of pnpm-workspace.yaml to avoid duplicating dependency URLs and keep the configuration DRY.

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 on lines +20 to +21
"vite": "https://pkg.pr.new/voidzero-dev/vite-plus/@voidzero-dev/vite-plus-core@1856",
"vite-plus": "https://pkg.pr.new/voidzero-dev/vite-plus@1856"

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

high

Using temporary pkg.pr.new URLs in the template package.json will cause issues for end-users who use create-remdx to bootstrap new projects. Prerelease builds on pkg.pr.new are temporary, not guaranteed to be permanently available, and can be slow or rate-limited. When this package is published, new projects created from this template will fail to install dependencies if these builds are garbage-collected.

Consider using standard npm registry versions (even if prereleases/tags like alpha, beta, or next) or a placeholder that is dynamically replaced during the bootstrapping process.

Suggested change
"vite": "https://pkg.pr.new/voidzero-dev/vite-plus/@voidzero-dev/vite-plus-core@1856",
"vite-plus": "https://pkg.pr.new/voidzero-dev/vite-plus@1856"
"vite": "npm:@voidzero-dev/vite-plus-core@^0.2.0",
"vite-plus": "^0.2.0"

Comment thread pnpm-workspace.yaml
Comment on lines +13 to +14
vite: 'https://pkg.pr.new/voidzero-dev/vite-plus/@voidzero-dev/vite-plus-core@1856'
vitest: '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

You can use the catalog: specifier in overrides to avoid duplicating the dependency URLs/versions between the catalog and overrides sections. This keeps the configuration DRY and easier to maintain when updating dependencies in the future.

  vite: 'catalog:'
  vitest: 'catalog:'

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