Skip to content

Commit aec1d89

Browse files
committed
chore(): add legacy peer deps to install step
1 parent 41eac8a commit aec1d89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.scripts/common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ function preparePackage(tasks, package, version, install) {
133133
title: `${pkg.name}: install npm dependencies`,
134134
task: async () => {
135135
await fs.remove(path.join(projectRoot, 'node_modules'));
136-
await execa('npm', ['i'], { cwd: projectRoot });
136+
await execa('npm', ['i', '--legacy-peer-deps'], { cwd: projectRoot });
137137
}
138138
});
139139
}

0 commit comments

Comments
 (0)