Skip to content
Merged
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
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
legacy-peer-deps=true
Copy link

Copilot AI Apr 12, 2026

Choose a reason for hiding this comment

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

Consider adding an inline comment explaining why legacy-peer-deps is enabled (e.g., unbuild@3.6.1 ↔ TypeScript 6 peer conflict) and when it can be removed. Without context, this setting can be confusing for future maintainers.

Copilot uses AI. Check for mistakes.
Copy link

Copilot AI Apr 12, 2026

Choose a reason for hiding this comment

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

Setting legacy-peer-deps=true in a repo-level .npmrc affects all installs (local dev, CI, and any scripts) and can mask new peer dependency issues. Consider scoping this to CI only (e.g., npm ci --legacy-peer-deps or NPM_CONFIG_LEGACY_PEER_DEPS=true in workflows) to keep stricter resolution for developers while still unblocking CI.

Suggested change
legacy-peer-deps=true

Copilot uses AI. Check for mistakes.