chore(scripts): run npm i add package lock false

This commit is contained in:
Brandy Carney
2020-08-27 17:26:56 -04:00
parent 3ecd899d2b
commit 3f1fe13c29
2 changed files with 2 additions and 1 deletions

View File

@@ -131,7 +131,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', ['ci'], { cwd: projectRoot });
await execa('npm', ['i'], { cwd: projectRoot });
}
});
}