-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps): bump vite-plus to pkg-pr-new pr-1588 #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: development
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| min-release-age=3600 | ||
| min-release-age-exclude=vite-plus,@voidzero-dev/*,@oxc-project/*,@oxlint/*,oxlint,oxfmt,oxlint-tsgolint,vitest,@vitest/* |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -17,8 +17,8 @@ | |||||
| "postcss": "8.5.10", | ||||||
| "tailwindcss": "3.4.19", | ||||||
| "typescript": "5.9.3", | ||||||
| "vite": "npm:@voidzero-dev/vite-plus-core@0.1.20", | ||||||
| "vite-plus": "0.1.20" | ||||||
| "vite": "npm:@voidzero-dev/vite-plus-core@latest", | ||||||
| "vite-plus": "https://pkg.pr.new/voidzero-dev/vite-plus@1588" | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is a mismatch between the version specifier used for
Suggested change
|
||||||
| }, | ||||||
| "peerDependencies": { | ||||||
| "react": "19.2.3", | ||||||
|
|
@@ -30,8 +30,9 @@ | |||||
| "jiti": "^2.0.0", | ||||||
| "lodash": "4.18.1", | ||||||
| "lodash-es": "4.18.1", | ||||||
| "vite": "npm:@voidzero-dev/vite-plus-core@0.1.20", | ||||||
| "vitest": "npm:@voidzero-dev/vite-plus-test@0.1.20" | ||||||
| "vite": "npm:@voidzero-dev/vite-plus-core@latest", | ||||||
| "@voidzero-dev/vite-plus-core": "https://pkg.pr.new/voidzero-dev/vite-plus/@voidzero-dev/vite-plus-core@5577b0154f33d1480a3c96347e94fa5d2094de2e", | ||||||
| "@voidzero-dev/vite-plus-prompts": "https://pkg.pr.new/voidzero-dev/vite-plus/@voidzero-dev/vite-plus-prompts@5577b0154f33d1480a3c96347e94fa5d2094de2e" | ||||||
| } | ||||||
| } | ||||||
| } | ||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a mismatch between the version specifier used for
vite-plus(which uses the PR number@1588) and the overrides for@voidzero-dev/vite-plus-coreand@voidzero-dev/vite-plus-prompts(which use the specific commit hash@5577b0154f33d1480a3c96347e94fa5d2094de2e). If new commits are pushed to PR 1588,vite-pluswill resolve to the newer commit while the overridden packages will remain pinned to the older commit, potentially causing runtime errors or build failures due to API drift. It is highly recommended to pinvite-plusto the exact same commit hash to ensure consistency and reproducible builds.