chore: upgrade vite-plus to 0.1.19-alpha.3#8
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the vite-plus ecosystem to version 0.1.19-alpha.3 and adds several packages to the minimumReleaseAgeExclude list in pnpm-workspace.yaml. Feedback indicates that the package names for @oxlint-tsgolint in the exclusion list are incorrect because they include platform-specific suffixes that do not match the actual package names in the lockfile, which will prevent the exclusion from working as intended.
| - "@oxlint-tsgolint/linux-x64-gnu" | ||
| - "@oxlint-tsgolint/linux-arm64-gnu" | ||
| - "@oxlint-tsgolint/linux-x64-musl" | ||
| - "@oxlint-tsgolint/linux-arm64-musl" | ||
| - "@oxlint-tsgolint/win32-x64-msvc" | ||
| - "@oxlint-tsgolint/win32-arm64-msvc" |
There was a problem hiding this comment.
The package names for @oxlint-tsgolint in the minimumReleaseAgeExclude list do not match the actual package names found in the lockfile. Based on the pnpm-lock.yaml changes (diff 50), these packages do not use the -gnu, -musl, or -msvc suffixes. This mismatch will prevent these packages from being correctly excluded from the minimum release age requirement during the automated release process.
- "@oxlint-tsgolint/linux-x64"
- "@oxlint-tsgolint/linux-arm64"
- "@oxlint-tsgolint/win32-x64"
- "@oxlint-tsgolint/win32-arm64"
Upgrade vite-plus and related packages to 0.1.19-alpha.3 alpha version.