Skip to content
Closed
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
8 changes: 8 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,14 @@
"prettier": "3.6.2",
"typescript": "^5.9.3"
},
"pnpm": {
"overrides": {
"js-yaml@<3.14.2": ">=3.14.2",
"js-yaml@>=4.0.0 <4.1.1": ">=4.1.1",
"mdast-util-to-hast@<13.2.1": ">=13.2.1",
"glob@>=11.0.0 <11.1.0": ">=11.1.0"
Comment on lines +99 to +100

Copilot AI Dec 9, 2025

Copy link

Choose a reason for hiding this comment

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

The override for glob@>=11.0.0 <11.1.0 specifies >=11.1.0, but the pnpm-lock.yaml shows that glob@13.0.0 is being used instead. The override appears ineffective since version 13.0.0 doesn't match the range >=11.0.0 <11.1.0. Consider updating this override to either:

  1. Remove it if glob@13.0.0 is the intended version (recommended)
  2. Update the range to match the actual version being used: glob@>=11.0.0 <13.0.0: >=13.0.0
Suggested change
"mdast-util-to-hast@<13.2.1": ">=13.2.1",
"glob@>=11.0.0 <11.1.0": ">=11.1.0"
"mdast-util-to-hast@<13.2.1": ">=13.2.1"

Copilot uses AI. Check for mistakes.
}
},
"browserslist": "last 2 Chrome versions, last 2 firefox versions, last 2 safari versions, last 2 edge versions, not dead",
"packageManager": "pnpm@10.15.0"
}
104 changes: 16 additions & 88 deletions pnpm-lock.yaml

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

Loading