From 4b7c17a7e04b27c930763d55fd1ce83fbf18cf7e Mon Sep 17 00:00:00 2001 From: "Manu Mtz.-Almeida" Date: Tue, 22 Jan 2019 21:32:53 +0100 Subject: [PATCH] chore(): fix install --- .scripts/prepare.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.scripts/prepare.js b/.scripts/prepare.js index a657d6b8f8..003264ef10 100644 --- a/.scripts/prepare.js +++ b/.scripts/prepare.js @@ -90,7 +90,7 @@ async function askVersion() { } -async function preparePackages(packages, version) { +async function preparePackages(packages, version, install) { // execution order matters const tasks = []; @@ -103,7 +103,7 @@ async function preparePackages(packages, version) { // add all the prepare scripts // run all these tasks before updating package.json version packages.forEach(package => { - common.preparePackage(tasks, package, version); + common.preparePackage(tasks, package, version, install); }); // add update package.json of each project