Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pr-review/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pr-review/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"prettier": "3.6.2",
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"tsx": "^4.20.3",
"tsx": "4.20.3",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version specifier for tsx was changed from a flexible "^4.20.3" to a fixed "4.20.3". This creates an inconsistency with your other dependencies (some allow patch updates, others are pinned).

To ensure consistency and receive non-breaking patch updates, consider using the caret for all devDependencies. You could also alphabetize the entries for readability:

{
  "devDependencies": {
    "prettier": "3.6.2",
    "rimraf": "6.0.1",
    "ts-node": "10.9.2",
    "tsx": "^4.20.3",
    "typescript": "5.8.3",
    "yaml": "2.8.0"
  }
}

"typescript": "5.8.3",
"yaml": "2.8.0"
}
Expand Down
2 changes: 1 addition & 1 deletion pr-summary/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pr-summary/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"eslint-plugin-unicorn": "56.0.1",
"prettier": "3.6.2",
"prettier-eslint": "16.4.2",
"tsx": "^4.20.3",
"tsx": "4.20.3",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Similar to your other workspace, the caret was removed from tsx. For consistency across both packages, restore the caret to allow patch updates and consider sorting dependencies alphabetically:

{
  "devDependencies": {
    "eslint-plugin-unicorn": "56.0.1",
    "prettier": "3.6.2",
    "prettier-eslint": "16.4.2",
    "tsx": "^4.20.3",
    "typescript": "5.8.3",
    "yaml": "2.8.0"
  }
}

"typescript": "5.8.3",
"yaml": "2.8.0"
}
Expand Down