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
259 changes: 16 additions & 243 deletions package-lock.json

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

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
"require": "./lib/cjs/"
}
},
"overrides": {
"minimatch": "^9.0.7"
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

For security-related overrides, it's safer to pin the dependency to a specific known-good version instead of using a caret range. This prevents accidentally pulling in a newer version that might reintroduce a vulnerability or have a new one. Since ^9.0.7 resolves to 9.0.9 currently, I'd recommend pinning it to that version.

Suggested change
"minimatch": "^9.0.7"
"minimatch": "9.0.9"

},
"release": {
"branches": [
"main"
Expand Down
Loading