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 cbb1958 commit e901d69Copy full SHA for e901d69
packages/nx/src/tasks-runner/utils.ts
@@ -541,6 +541,7 @@ export function shouldStreamOutput(
541
initiatingProject: string | null
542
): boolean {
543
if (process.env.NX_STREAM_OUTPUT === 'true') return true;
544
+ if (process.env.NX_STREAM_OUTPUT === 'false') return false;
545
if (longRunningTask(task)) return true;
546
if (task.target.project === initiatingProject) return true;
547
return false;
0 commit comments