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 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.
| "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" |
There was a problem hiding this comment.
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.
| "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" |
| vite: 'https://pkg.pr.new/voidzero-dev/vite-plus/@voidzero-dev/vite-plus-core@1856' | ||
| vitest: '4.1.9' |
There was a problem hiding this comment.
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