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
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@
"typescript": "^5.2.2"
},
"resolutions": {
"cross-spawn": "^7.0.6"
"cross-spawn": "^7.0.6",
"handlebars": "^4.7.9",
"picomatch": "^2.3.2",
"flatted": "^3.4.2",
"minimatch": "^9.0.7"
Comment on lines +30 to +31
Copy link

Copilot AI Mar 31, 2026

Choose a reason for hiding this comment

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

The minimatch resolution forces v9 for the whole dependency graph, but several dependencies in the lockfile still declare minimatch@^3.x (e.g. glob@7.x depends on minimatch@^3.0.4 / ^3.1.1). Overriding a major version like this can violate semver expectations and can break tooling at runtime even if the project’s own tests pass. Prefer upgrading the dependents to versions that natively use minimatch@9, or (if possible) pin minimatch@3 to a patched 3.x for the packages that require it, and keep minimatch@9 only where it’s already required.

Suggested change
"flatted": "^3.4.2",
"minimatch": "^9.0.7"
"flatted": "^3.4.2"

Copilot uses AI. Check for mistakes.
}
}
Loading
Loading