chore(): no-install flag

This commit is contained in:
Manu Mtz.-Almeida
2019-01-16 17:15:43 +01:00
parent 5e8511607a
commit 90740ce2c2
3 changed files with 13 additions and 10 deletions

View File

@ -5,7 +5,7 @@ const Listr = require('listr');
async function main() {
const tasks = [];
common.packages.forEach(package => {
common.preparePackage(tasks, package);
common.preparePackage(tasks, package, false, false);
});
const listr = new Listr(tasks, { showSubtasks: true });