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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
"node": "^20 || ^22",
"pnpm": ">=10.0.0 <11.0.0"
},
"packageManager": "pnpm@10.11.0",
"packageManager": "pnpm@10.28.1",
"pnpm": {
"overrides": {
"uuid": "8.3.2"
Expand Down
3 changes: 3 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
blockExoticSubdeps: true
minimumReleaseAge: 1440 # 24h
trustPolicy: no-downgrade
Comment on lines +1 to +3
Copy link

Copilot AI Jan 21, 2026

Choose a reason for hiding this comment

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

The pnpm-workspace.yaml file is missing the required packages field that defines which packages are part of the workspace. Additionally, the security settings blockExoticSubdeps, minimumReleaseAge, and trustPolicy are pnpm configuration options that belong in .npmrc file, not in pnpm-workspace.yaml. The pnpm-workspace.yaml file should only contain workspace package definitions like packages: ['packages/*'].

Suggested change
blockExoticSubdeps: true
minimumReleaseAge: 1440 # 24h
trustPolicy: no-downgrade
packages:
- "packages/*"

Copilot uses AI. Check for mistakes.
Loading