-
Notifications
You must be signed in to change notification settings - Fork 3
Pin dependency tsx to 4.20.3 #26
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 |
|---|---|---|
|
|
@@ -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", | ||
|
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. 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" | ||
| } | ||
|
|
||
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.
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" } }