-
Notifications
You must be signed in to change notification settings - Fork 4
Update dependency tsx to v4.20.5 #42
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,7 +38,7 @@ | |
| "eslint-plugin-sonarjs": "3.0.4", | ||
| "eslint-plugin-unicorn": "60.0.0", | ||
| "prettier": "3.6.2", | ||
| "tsx": "4.20.4", | ||
| "tsx": "4.20.5", | ||
|
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. After bumping "tsx", ensure you update and commit the lockfile so everyone installs the same versions. For example: npm install
# or if you're using Yarn:
yarn installThere 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. Since both sub-packages share identical devDependencies (including "tsx"), consider hoisting common deps to the workspace root or using a monorepo tool. This reduces duplication and guarantees consistent versions: {
"devDependencies": {
"tsx": "^4.20.5",
"typescript": "^5.9.2",
// ...other shared dependencies
}
} |
||
| "typescript": "5.9.2", | ||
| "typescript-eslint": "8.40.0", | ||
| "yaml": "2.8.1" | ||
|
|
||
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 |
|---|---|---|
|
|
@@ -37,7 +37,7 @@ | |
| "eslint-plugin-sonarjs": "3.0.4", | ||
| "eslint-plugin-unicorn": "60.0.0", | ||
| "prettier": "3.6.2", | ||
| "tsx": "4.20.4", | ||
| "tsx": "4.20.5", | ||
|
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. You're pinning "tsx" to an exact version here as well. Switch to a caret range so that patch updates come through without manual bumps. For example: {
"tsx": "^4.20.5"
}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. Don't forget to regenerate and commit your lockfile after bumping dependencies, ensuring reproducible installs across environments: npm install
# or with Yarn:
yarn install |
||
| "typescript": "5.9.2", | ||
| "typescript-eslint": "8.40.0", | ||
| "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.
You're pinning "tsx" to an exact version. It's recommended to use caret ranges to allow non-breaking patches to roll in automatically. For example:
{ "tsx": "^4.20.5" }