-
Notifications
You must be signed in to change notification settings - Fork 0
Bump vinext from 0.0.50 to 0.2.1 #32
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: main
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -54,7 +54,7 @@ | |
| "tailwindcss": "4.2.1", | ||
| "tsx": "^4.23.7", | ||
| "typescript": "5.9.3", | ||
| "vinext": "0.0.50", | ||
| "vinext": "0.2.1", | ||
|
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. 🔍 Minor-version bump on a pre-1.0 dependency crosses effectively-breaking boundaries vinext is pre-1.0 (0.0.50 -> 0.2.1), so minor bumps here can contain breaking changes; the release notes include peer-dependency restructuring ( Was this helpful? React with 👍 or 👎 to provide feedback. |
||
| "vite": "^8.2.0", | ||
| "wrangler": "^4.115.0" | ||
| }, | ||
|
|
||
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.
🔍 tsconfig path alias resolution may no longer be provided by vinext 0.2.1
In vinext 0.0.50 the core plugin imported
vite-tsconfig-pathsdirectly and, for Vite 8, setresolve.tsconfigPaths: truefor the project's environments (seedist/index.js:58,382,409,601of the 0.0.50 tarball). In vinext 0.2.1 the only remaining tsconfig handling is for loadingnext.config(dist/config/next-config.js:317-328); the plugin no longer registersvite-tsconfig-pathsnor enablesresolve.tsconfigPathsfor application code, and the dependency moved to an optional peer (which is why this PR's lockfile update deletesvite-tsconfig-paths,tsconfck, andglobrex). This repo relies heavily on the@/*alias declared only intsconfig.json(e.g.app/layout.tsx,app/api/**/route.ts) andvite.config.tsdeclares noresolve.aliasand does not add atsconfigPaths()plugin. Vite 8 exposesresolve.tsconfigPathsas an opt-in boolean (dist/node/index.d.ts:2016), so unless it defaults to enabled,npm run build/npm run devcould fail to resolve@/...imports after this bump. Worth verifying with an actual install + build before merging (node_modules is not present in the checkout, so this could not be exercised here).Was this helpful? React with 👍 or 👎 to provide feedback.