Skip to content

Commit

Permalink
fix(repo): fix pnpm v7 install config (#10361)
Browse files Browse the repository at this point in the history
  • Loading branch information
meeroslav committed May 18, 2022
1 parent 0e47f7e commit d0ece6e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion e2e/utils/index.ts
Expand Up @@ -288,7 +288,10 @@ export function newProject({

// Temporary hack to prevent installing with `--frozen-lockfile`
if (isCI && packageManager === 'pnpm') {
updateFile('.npmrc', 'prefer-frozen-lockfile=false');
updateFile(
'.npmrc',
'prefer-frozen-lockfile=false\nstrict-peer-dependencies=false'
);
}

const packages = [
Expand Down

0 comments on commit d0ece6e

Please sign in to comment.