fix: strict-peer-dependencies is set to false by default (#5499)

This commit is contained in:
Zoltan Kochan
2022-10-16 16:33:28 +03:00
committed by GitHub
parent 51e5a8740d
commit 3c117996e5
2 changed files with 7 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
---
"@pnpm/config": patch
"pnpm": patch
---
`strict-peer-dependencies` is set to `false` by default.

View File

@@ -227,7 +227,7 @@ export async function getConfig (
'shell-emulator': false,
reverse: false,
sort: true,
'strict-peer-dependencies': true,
'strict-peer-dependencies': false,
'unsafe-perm': npmDefaults['unsafe-perm'],
'use-beta-cli': false,
'use-inline-specifiers-lockfile-format': false,