Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
11,159 changes: 1,978 additions & 9,181 deletions javascript-tui/package-lock.json

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion javascript-tui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@
"overrides": {
"tar": "7.5.11",
"undici": "6.24.1",
"flatted": "3.4.2"
"flatted": "3.4.2",
"@xmldom/xmldom": ">=0.8.12",
"brace-expansion": ">=1.1.13",
"lodash": ">=4.18.0"
Copy link

Copilot AI Apr 15, 2026

Choose a reason for hiding this comment

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

These npm overrides are specified as open-ended ranges (">=") while the other overrides are pinned. Using ">=…" can unexpectedly pull in future major versions (e.g. lodash@5) and reduces install reproducibility. Consider pinning exact patched versions (or constraining the range, e.g. "^4.18.0") to avoid unintended breaking upgrades.

Suggested change
"lodash": ">=4.18.0"
"lodash": "4.17.21"

Copilot uses AI. Check for mistakes.
},
"xo": {
"extends": "xo-react",
Expand Down
Loading
Loading