chore(build): use install instead of ci for release

This commit is contained in:
Cam Wiegert
2018-07-16 13:38:39 -05:00
parent 89d1526708
commit 70bd1e88ea

View File

@@ -84,7 +84,7 @@ function preparePackage(tasks, package, version) {
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 });
}
});