-
Notifications
You must be signed in to change notification settings - Fork 4
Update depedency versions #1654
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: master
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 | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -19,8 +19,8 @@ | |||||||||||||||||
| {{/each}} | ||||||||||||||||||
| {{#if isReact}} | ||||||||||||||||||
| "@types/react": "^18.0.0", | ||||||||||||||||||
| "react": "^18.2.0", | ||||||||||||||||||
| "react-dom": "^18.2.0" | ||||||||||||||||||
| "react": "^19.2.1", | ||||||||||||||||||
| "react-dom": "^19.2.1" | ||||||||||||||||||
|
Comment on lines
21
to
+23
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. 🧩 Analysis chain🏁 Script executed: # Search for @types/react references across package.json files
fd -e "package.json" -o -e "package.json.hbs" --type f | head -20 | xargs -I {} sh -c 'echo "=== {} ===" && cat "{}" | grep -A 1 -B 1 "@types/react" 2>/dev/null || echo "no match"'Repository: thunderstore-io/thunderstore-ui Length of output: 191 🏁 Script executed: # Get a broader view: search for @types/react in all package.json files
rg "@types/react" --type json -A 1 -B 1Repository: thunderstore-io/thunderstore-ui Length of output: 2666 Align The template currently scaffolds:
Any new React package generated from this template will have React 19.2.x at runtime but React 18 type definitions. All other packages in the repo use Update to keep them in sync: - "@types/react": "^18.0.0",
+ "@types/react": "^19.2.7",📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||
| {{/if}} | ||||||||||||||||||
| }, | ||||||||||||||||||
| "devDependencies": { | ||||||||||||||||||
|
|
||||||||||||||||||
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.
Type definition version mismatch detected. The
@types/reactis still at^18.0.0whilereactandreact-domhave been updated to^19.2.1. This will cause TypeScript compilation errors due to incompatible type definitions.Fix:
Spotted by Graphite Agent

Is this helpful? React 👍 or 👎 to let us know.