We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c602ff commit 1e13d40Copy full SHA for 1e13d40
scripts/tools.js
@@ -17,7 +17,7 @@ module.exports.printOpts = (key, value) =>
17
: `="${value}"`
18
}`;
19
20
-module.exports.lernaRun = (command, components) => `lerna -- run ${command} --no-bail --stream --include-dependencies ${
+module.exports.lernaRun = (command, components) => `lerna -- run ${command} --no-bail ${command === "build" ? `--stream` : `--parallel`} --include-dependencies ${
21
components.length > 0 ? components.map(item => `--scope "*/${item}"`).join(" ") : ""}`;
22
23
0 commit comments