-
Notifications
You must be signed in to change notification settings - Fork 32
Update react monorepo (major) #503
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 |
|---|---|---|
|
|
@@ -6,14 +6,14 @@ | |
| "@blueprintjs/icons": "^5.9.0", | ||
| "@sourceacademy/bundle-ar": "workspace:^", | ||
| "@sourceacademy/modules-lib": "workspace:^", | ||
| "react": "^18.3.1", | ||
| "react-dom": "^18.3.1", | ||
| "react": "^19.0.0", | ||
| "react-dom": "^19.0.0", | ||
| "saar": "^1.0.4" | ||
| }, | ||
| "devDependencies": { | ||
| "@sourceacademy/modules-buildtools": "workspace:^", | ||
| "@types/react": "^18.3.1", | ||
| "@types/react-dom": "^18.3.1" | ||
| "@types/react": "^19.0.0", | ||
| "@types/react-dom": "^19.0.0" | ||
| }, | ||
| "scripts": { | ||
| "build": "buildtools build tab .", | ||
|
Comment on lines
+9
to
19
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. Bug: 🔍 Detailed AnalysisThe 💡 Suggested FixAdd an initial argument (e.g., 🤖 Prompt for AI AgentDid we get this right? 👍 / 👎 to inform future reviews. |
||
|
|
||
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.
Bug:
re-resizablev6.9.11 is incompatible with React 19, causing JSX rendering issues.Severity: CRITICAL | Confidence: 1.00
🔍 Detailed Analysis
The
re-resizablepackage at version6.9.11is incompatible with React 19. The official changelog forre-resizableindicates that version6.10.4includes a critical fix for "generated JSX namespace not working with React 19". Using6.9.11with React 19 will cause rendering errors due to JSX namespace issues.💡 Suggested Fix
Upgrade
re-resizableto version6.10.4or higher (e.g.,6.11.2) to ensure React 19 compatibility.🤖 Prompt for AI Agent
Did we get this right? 👍 / 👎 to inform future reviews.