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
141 changes: 75 additions & 66 deletions pr-review/package-lock.json

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

4 changes: 2 additions & 2 deletions pr-review/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",

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:

- "tsx": "4.20.6",
+ "tsx": "^4.20.6",

"typescript": "5.9.2",
"typescript-eslint": "8.44.0",
"typescript-eslint": "8.44.1",

Choose a reason for hiding this comment

The 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

Choose a reason for hiding this comment

The 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"
  }
}

}
}
Loading