-
Notifications
You must be signed in to change notification settings - Fork 4
Update non-major dependencies #65
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 |
|---|---|---|
|
|
@@ -31,7 +31,7 @@ | |
| }, | ||
| "devDependencies": { | ||
| "@eslint/js": "9.38.0", | ||
| "@types/node": "22.18.11", | ||
| "@types/node": "22.18.12", | ||
| "@vercel/ncc": "0.38.4", | ||
| "eslint": "9.38.0", | ||
| "eslint-plugin-import": "2.32.0", | ||
|
Comment on lines
32
to
37
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. The devDependencies block is duplicated in both pr-review/package.json and pr-summary/package.json. To avoid configuration drift and ensure consistency, consider consolidating shared devDependencies into a root package.json or a shared config (e.g., a base preset) and reference them via workspaces or extends. |
||
|
|
@@ -40,7 +40,7 @@ | |
| "prettier": "3.6.2", | ||
| "tsx": "4.20.6", | ||
| "typescript": "5.9.3", | ||
| "typescript-eslint": "8.46.1", | ||
| "typescript-eslint": "8.46.2", | ||
|
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, use a caret range for typescript-eslint to simplify future patch or minor bumps and avoid manual updates: "typescript-eslint": "^8.46.2", |
||
| "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 caret (^) version ranges for @types/node to automatically accept patch and minor updates rather than pinning to an exact version. This reduces maintenance overhead. For example: