Features
-
ffddf34: Add new global option called
--stream
. (#2595)When used, the output from child processes is streamed to the console immediately, prefixed with the originating package directory. This allows output from different packages to be interleaved.
-
The
run
andexec
commands may use the--parallel
option.--parallel
completely disregards concurrency and topological sorting,
running a given script immediately in all matching packages
with prefixed streaming output. This is the preferred flag
for long-running processes such as watch run over many packages.For example:
pnpm run --parallel watch
PR #2599
-
Color the child output prefixes (#2598)