-
Notifications
You must be signed in to change notification settings - Fork 3
Update non-major dependencies #54
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.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -38,9 +38,9 @@ | |
| "eslint-plugin-sonarjs": "3.0.5", | ||
| "eslint-plugin-unicorn": "61.0.2", | ||
| "prettier": "3.6.2", | ||
| "tsx": "4.20.5", | ||
| "tsx": "4.20.6", | ||
| "typescript": "5.9.2", | ||
| "typescript-eslint": "8.44.0", | ||
| "typescript-eslint": "8.44.1", | ||
|
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. Similarly, switch the TypeScript ESLint plugin to a caret range so you’ll receive future patch releases automatically: - "typescript-eslint": "8.44.1",
+ "typescript-eslint": "^8.44.1", |
||
| "yaml": "2.8.1" | ||
|
Comment on lines
38
to
44
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. To improve readability and maintenance, sort your devDependencies alphabetically. This makes it easier to spot duplicates or missing updates. Reordered snippet: {
"devDependencies": {
"eslint-plugin-sonarjs": "3.0.5",
"eslint-plugin-unicorn": "61.0.2",
"prettier": "3.6.2",
"tsx": "^4.20.6",
"typescript": "5.9.2",
"typescript-eslint": "^8.44.1",
"yaml": "2.8.1"
}
} |
||
| } | ||
| } | ||
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.
Consider using a caret (^) semver range for the tsx dependency instead of pinning to an exact patch. This allows your CI to pull in non-breaking patch fixes automatically without a manual bump each time.
Suggested change: