-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
chore(deps): update all non-major dependencies #5648
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
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -11,24 +11,24 @@ | |||||
| "test:e2e": "rm -rf port*.txt; playwright test --project=chromium" | ||||||
| }, | ||||||
| "dependencies": { | ||||||
| "@tailwindcss/postcss": "^4.1.15", | ||||||
| "@tailwindcss/postcss": "^4.1.16", | ||||||
| "@tanstack/react-router": "workspace:^", | ||||||
| "@tanstack/react-router-devtools": "workspace:^", | ||||||
| "@tanstack/router-plugin": "workspace:^", | ||||||
| "@tanstack/virtual-file-routes": "workspace:^", | ||||||
| "postcss": "^8.5.1", | ||||||
| "postcss": "^8.5.6", | ||||||
| "react": "^19.0.0", | ||||||
| "react-dom": "^19.0.0", | ||||||
| "redaxios": "^0.5.1", | ||||||
| "tailwindcss": "^4.1.15", | ||||||
| "zod": "^3.24.2" | ||||||
| "tailwindcss": "^4.1.16", | ||||||
| "zod": "^3.25.76" | ||||||
| }, | ||||||
| "devDependencies": { | ||||||
| "@playwright/test": "^1.50.1", | ||||||
| "@playwright/test": "^1.56.1", | ||||||
| "@tanstack/router-e2e-utils": "workspace:^", | ||||||
|
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. Use Line 28 also uses Apply this diff: "devDependencies": {
- "@tanstack/router-e2e-utils": "workspace:^",
+ "@tanstack/router-e2e-utils": "workspace:*",📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| "@types/react": "^19.0.8", | ||||||
| "@types/react-dom": "^19.0.3", | ||||||
| "@vitejs/plugin-react": "^4.3.4", | ||||||
| "@vitejs/plugin-react": "^4.7.0", | ||||||
| "vite": "^7.1.7" | ||||||
| } | ||||||
| } | ||||||
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.
Use
workspace:*instead ofworkspace:^for internal dependencies.Per coding guidelines, internal workspace dependencies should use
workspace:*protocol, notworkspace:^. Update lines 15–18 accordingly.Apply this diff:
"dependencies": { - "@tanstack/react-router": "workspace:^", - "@tanstack/react-router-devtools": "workspace:^", - "@tanstack/router-plugin": "workspace:^", - "@tanstack/virtual-file-routes": "workspace:^", + "@tanstack/react-router": "workspace:*", + "@tanstack/react-router-devtools": "workspace:*", + "@tanstack/router-plugin": "workspace:*", + "@tanstack/virtual-file-routes": "workspace:*",📝 Committable suggestion
🤖 Prompt for AI Agents