Skip to content

Commit 1e13d40

Browse files
chore: Watch needs to be run in parallel (#1466)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 4c602ff commit 1e13d40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/tools.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module.exports.printOpts = (key, value) =>
1717
: `="${value}"`
1818
}`;
1919

20-
module.exports.lernaRun = (command, components) => `lerna -- run ${command} --no-bail --stream --include-dependencies ${
20+
module.exports.lernaRun = (command, components) => `lerna -- run ${command} --no-bail ${command === "build" ? `--stream` : `--parallel`} --include-dependencies ${
2121
components.length > 0 ? components.map(item => `--scope "*/${item}"`).join(" ") : ""}`;
2222

2323

0 commit comments

Comments
 (0)