-
Notifications
You must be signed in to change notification settings - Fork 118
Update jupyter-html deps (major) #675
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 |
|---|---|---|
|
|
@@ -17,17 +17,17 @@ | |
| "react-dom": "^19.2.4" | ||
| }, | ||
| "devDependencies": { | ||
| "@eslint/js": "^9.39.3", | ||
| "@eslint/js": "^10.0.0", | ||
| "@types/react": "^19.2.14", | ||
| "@types/react-dom": "^19.2.3", | ||
| "@vitejs/plugin-react": "^4.7.0", | ||
| "eslint": "^9.39.3", | ||
| "eslint-plugin-react-hooks": "^5.2.0", | ||
| "@vitejs/plugin-react": "^6.0.0", | ||
| "eslint": "^10.0.0", | ||
| "eslint-plugin-react-hooks": "^7.0.0", | ||
| "eslint-plugin-react-refresh": "^0.5.0", | ||
| "globals": "^17.0.0", | ||
| "typescript": "~5.9.0", | ||
| "typescript": "~6.0.0", | ||
| "typescript-eslint": "^8.56.1", | ||
| "vite": "^6.4.1", | ||
| "vite": "^8.0.0", | ||
|
Comment on lines
+23
to
+30
Contributor
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. 🚩 Multiple major version skips in dependency bumps Several dependencies skip major versions: Was this helpful? React with 👍 or 👎 to provide feedback. |
||
| "vite-plugin-singlefile": "^2.3.0" | ||
| } | ||
| } | ||
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.
🚩 eslint-plugin-react-hooks v7 API compatibility with eslint config
The eslint config at
livekit-rtc/jupyter-html/eslint.config.js:21accessesreactHooks.configs.recommended.rulesto spread rules. Witheslint-plugin-react-hooksjumping from v5 to v7, the shape of the exported config object may have changed. The lockfile resolves v7.1.1 successfully, but whether the.configs.recommended.rulespath still exists at runtime depends on the plugin's v7 API. This should be verified by running the lint script.Was this helpful? React with 👍 or 👎 to provide feedback.