chore(deps): bump vite-plus to v0.1.24#8
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates several dependencies to preview URLs from pkg.pr.new and moves the pnpm overrides and onlyBuiltDependencies configurations from the root package.json to pnpm-workspace.yaml. Feedback indicates that the newly added configuration options (minimumReleaseAge, minimumReleaseAgeExclude, and blockExoticSubdeps) are not supported in pnpm-workspace.yaml and must be defined in .npmrc instead to prevent them from being silently ignored.
| 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.
The configuration options minimumReleaseAge, minimumReleaseAgeExclude, and blockExoticSubdeps are not supported in pnpm-workspace.yaml. In pnpm, these are general configuration settings and must be defined in .npmrc instead.
Placing them here will cause pnpm to silently ignore them, meaning your release age and exotic subdependency constraints will not be enforced.
Please remove these lines from pnpm-workspace.yaml and add them to your .npmrc file:
minimum-release-age=60
minimum-release-age-exclude[]=vite-plus
minimum-release-age-exclude[]=vite
minimum-release-age-exclude[]=vitest
minimum-release-age-exclude[]=@voidzero-dev/*
minimum-release-age-exclude[]=@oxc-project/*
minimum-release-age-exclude[]=@oxlint/*
minimum-release-age-exclude[]=oxlint
minimum-release-age-exclude[]=oxfmt
minimum-release-age-exclude[]=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