Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Comment on lines +16 to +17

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The versions for @tanstack/react-router and @tanstack/react-start are being updated from ^1.0.0 to ^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.

"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",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

This updates Vite to a beta version (8.0.0-beta.0). Beta versions can be unstable, may contain bugs, and are subject to breaking changes before the final release. Using them in production can be risky. It would be beneficial to add a note to the PR description about the intent behind using a pre-release version, especially as this is a major version bump.

"vite-tsconfig-paths": "^6.1.1"
}
}
Loading