chore(): add legacy peer deps to install step

This commit is contained in:
Liam DeBeasi
2020-11-05 12:39:17 -05:00
parent 41eac8abf4
commit aec1d89454

View File

@@ -133,7 +133,7 @@ function preparePackage(tasks, package, version, install) {
title: `${pkg.name}: install npm dependencies`,
task: async () => {
await fs.remove(path.join(projectRoot, 'node_modules'));
await execa('npm', ['i'], { cwd: projectRoot });
await execa('npm', ['i', '--legacy-peer-deps'], { cwd: projectRoot });
}
});
}