chore(deps): bump vite-plus to v0.1.24#8
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the vite-plus dependency and its associated lockfile entries to a pre-release version hosted on pkg.pr.new. Additionally, it introduces several configuration options to pnpm-workspace.yaml. However, these settings (minimumReleaseAge, minimumReleaseAgeExclude, and blockExoticSubdeps) are .npmrc configurations rather than workspace settings, meaning they will be silently ignored by pnpm in their current location. They should be moved to the .npmrc file using the correct kebab-case format.
| minimumReleaseAge: 60 | ||
| minimumReleaseAgeExclude: | ||
| - vite-plus | ||
| - vite | ||
| - vitest | ||
| - "@voidzero-dev/*" | ||
| - "@oxc-project/*" | ||
| - "@oxlint/*" | ||
| - oxlint | ||
| - oxfmt | ||
| - oxlint-tsgolint | ||
| blockExoticSubdeps: false |
There was a problem hiding this comment.
These configuration options (minimumReleaseAge, minimumReleaseAgeExclude, and blockExoticSubdeps) are .npmrc settings, not workspace settings. Placing them in pnpm-workspace.yaml will cause pnpm to silently ignore them.
To configure these correctly, they should be moved to your .npmrc file using kebab-case:
minimum-release-age=60
minimum-release-age-exclude=vite-plus,vite,vitest,@voidzero-dev/*,@oxc-project/*,@oxlint/*,oxlint,oxfmt,oxlint-tsgolint
block-exotic-subdeps=false
Summary
Bump
vite-plusand related packages to the pkg.pr.new prerelease build for v0.1.24.Updated where applicable:
vite-plus-> pkg.pr.newvite/vitestaliases and overrides ->@voidzero-dev/vite-plus-core/@voidzero-dev/vite-plus-test@voidzero-dev/vite-plus-*direct deps,overrides/resolutions/pnpm.overrides/ catalogsminimum-release-agewith vite-plus stack excluded (pnpm / npm / bun / yarn as applicable)pnpm.*package.json fields intopnpm-workspace.yamlwhere presentTest plan