-
Notifications
You must be signed in to change notification settings - Fork 4
Update dependency eslint-plugin-unicorn to v63 #100
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -35,7 +35,7 @@ | |
| "eslint": "9.39.2", | ||
| "eslint-plugin-import": "2.32.0", | ||
| "eslint-plugin-sonarjs": "3.0.6", | ||
| "eslint-plugin-unicorn": "62.0.0", | ||
| "eslint-plugin-unicorn": "63.0.0", | ||
|
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. This dependency bump is identical to the one in // root package.json
{
"devDependencies": {
"eslint-plugin-unicorn": "^63.0.0",
// other shared devDependencies...
}
}Then remove it here. Also, using the caret range ( - "eslint-plugin-unicorn": "63.0.0",
+ "eslint-plugin-unicorn": "^63.0.0", |
||
| "prettier": "3.8.1", | ||
| "tsx": "4.21.0", | ||
| "typescript": "5.9.3", | ||
|
|
||
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.
I see you’ve bumped
eslint-plugin-unicornfrom62.0.0to63.0.0here. Since this upgrade appears in multiple packages, consider centralizing shared devDependencies in your monorepo’s rootpackage.jsonto avoid duplication and ensure consistency:Then you can remove these entries from individual packages (
pr-reviewin this case). Additionally, switching to a caret (^63.0.0) allows automatic patch updates without manual bumps:This reduces maintenance overhead and keeps all packages in sync.