chore(deps): bump vite-plus to PR #1633 (pkg-pr-new)#5
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the vite-plus dependency to a specific preview version and modifies bunfig.toml to exclude several @voidzero-dev packages from the minimum release age requirement. Feedback was provided to simplify the bunfig.toml configuration by using a wildcard pattern for the @voidzero-dev scope, which would improve maintainability and ensure consistency with existing patterns.
| minimumReleaseAgeExcludes = [ | ||
| "vite-plus", | ||
| "@voidzero-dev/vite-plus-core", | ||
| "@voidzero-dev/vite-plus-test", | ||
| "@voidzero-dev/vite-plus-prompts", | ||
| "@voidzero-dev/vite-plus-darwin-arm64", | ||
| "@voidzero-dev/vite-plus-darwin-x64", | ||
| "@voidzero-dev/vite-plus-linux-arm64-gnu", | ||
| "@voidzero-dev/vite-plus-linux-arm64-musl", | ||
| "@voidzero-dev/vite-plus-linux-x64-gnu", | ||
| "@voidzero-dev/vite-plus-linux-x64-musl", | ||
| "@voidzero-dev/vite-plus-win32-arm64-msvc", | ||
| "@voidzero-dev/vite-plus-win32-x64-msvc", | ||
| "@zerobyte/*", | ||
| ] |
There was a problem hiding this comment.
The list of excluded packages can be simplified by using a wildcard for the @voidzero-dev scope. Bun supports glob patterns in minimumReleaseAgeExcludes, so replacing the individual package names with "@voidzero-dev/*" improves maintainability and ensures any new packages added to this scope in the future are automatically covered. This approach is also consistent with the existing "@zerobyte/*" entry.
minimumReleaseAgeExcludes = [
"vite-plus",
"@voidzero-dev/*",
"@zerobyte/*",
]
Summary
Bump
vite-plusand related@voidzero-dev/*packages to the pkg-pr-new prerelease for vite-plus PR #1633.Updated where applicable:
vite-plus→https://pkg.pr.new/voidzero-dev/vite-plus@1633vitealias →@voidzero-dev/vite-plus-corepkg-pr-new URLvitestalias →@voidzero-dev/vite-plus-testpkg-pr-new URLoverrides/resolutions/pnpm.overrides/pnpm-workspace.yamlcatalogsAlso configured
minimum-release-agewith vite-plus /@voidzero-dev/*excluded for pnpm / bun / npm.Test plan