chore(): do not install on build

This commit is contained in:
Manu Mtz.-Almeida
2018-08-16 15:45:10 +02:00
parent f845803c04
commit fef751d718

View File

@@ -77,17 +77,15 @@ function preparePackage(tasks, package, version) {
}
}
});
projectTasks.push({
title: `${pkg.name}: install npm dependencies`,
task: async () => {
await fs.remove(path.join(projectRoot, 'node_modules'))
await execa('npm', ['i'], { cwd: projectRoot });
}
});
}
projectTasks.push({
title: `${pkg.name}: install npm dependencies`,
task: async () => {
await fs.remove(path.join(projectRoot, 'node_modules'))
await execa('npm', ['i'], { cwd: projectRoot });
}
});
if (package !== 'core') {
projectTasks.push({
title: `${pkg.name}: npm link @ionic/core`,