Skip to content
Open
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: 6 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -135,5 +135,11 @@
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write --no-errors-on-unmatched"
]
},
"pnpm": {
"overrides": {
"rollup": ">=4.59.0",
"minimatch": ">=10.2.3"
Comment on lines +141 to +142
Copy link

Copilot AI Mar 1, 2026

Choose a reason for hiding this comment

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

The override ranges are open-ended (">=") which can allow future major versions (e.g., rollup@5, minimatch@11) to be selected the next time the lockfile is regenerated, potentially introducing breaking changes. Prefer pinning to an exact patched version (or at least a major-locked range like ^4.59.0 / ^10.2.3), and consider using the selector form (e.g., only override <patched) to minimize blast radius.

Suggested change
"rollup": ">=4.59.0",
"minimatch": ">=10.2.3"
"rollup": "^4.59.0",
"minimatch": "^10.2.3"

Copilot uses AI. Check for mistakes.
}
Comment on lines +138 to +143
Copy link

Copilot AI Mar 1, 2026

Choose a reason for hiding this comment

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

This repo already has an overrides: block in pnpm-workspace.yaml (currently for minimatch). Adding a second overrides source in package.json can be confusing and lead to drift; consider consolidating overrides in one place (update/remove the workspace override if package.json is the new source of truth).

Suggested change
},
"pnpm": {
"overrides": {
"rollup": ">=4.59.0",
"minimatch": ">=10.2.3"
}

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