-
Notifications
You must be signed in to change notification settings - Fork 0
chore: vite 8 #16
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?
chore: vite 8 #16
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 |
|---|---|---|
|
|
@@ -6,28 +6,28 @@ | |
| "scripts": { | ||
| "dev": "vite dev", | ||
| "build": "vite build", | ||
| "build:vercel": "vite build", | ||
| "build:vercel": "NITRO_PRESET=node-server vite build", | ||
| "vercel-build": "pnpm build:vercel", | ||
| "start": "vite preview", | ||
| "preview": "vite preview" | ||
| }, | ||
| "dependencies": { | ||
| "@radix-ui/react-popover": "^1.1.4", | ||
| "@tanstack/react-router": "^1.0.0", | ||
| "@tanstack/react-start": "^1.0.0", | ||
| "react": "^19.0.0", | ||
| "react-dom": "^19.0.0" | ||
| "@radix-ui/react-popover": "^1.1.15", | ||
| "@tanstack/react-router": "^1.161.1", | ||
| "@tanstack/react-start": "^1.161.1", | ||
| "react": "^19.2.4", | ||
| "react-dom": "^19.2.4" | ||
| }, | ||
| "devDependencies": { | ||
| "@parcel/macros": "^2.13.3", | ||
| "@parcel/macros": "^2.16.4", | ||
| "@types/node": "^25.3.0", | ||
| "@types/react": "^19.0.8", | ||
| "@types/react-dom": "^19.0.3", | ||
| "@types/react": "^19.2.14", | ||
| "@types/react-dom": "^19.2.3", | ||
| "@vitejs/plugin-react": "^5.1.4", | ||
| "nitro": "npm:nitro-nightly@3.0.1-20260219-081345-4df7aab2", | ||
| "typescript": "^5.7.2", | ||
| "typescript": "^5.9.3", | ||
| "unplugin-parcel-macros": "^0.0.3", | ||
| "vite": "^7.3.1", | ||
| "vite": "8.0.0-beta.0", | ||
|
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. This updates Vite to a beta version ( |
||
| "vite-tsconfig-paths": "^6.1.1" | ||
| } | ||
| } | ||
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.
The versions for
@tanstack/react-routerand@tanstack/react-startare being updated from^1.0.0to^1.161.1. This is a very significant version jump that likely includes numerous breaking changes. The pull request description should be updated to include details about the migration effort and confirmation that the application has been tested with these new versions.