diff --git a/packages/workspace/src/tasks-runner/run-command.ts b/packages/workspace/src/tasks-runner/run-command.ts index 81d1ede39810c..b99532c15cc73 100644 --- a/packages/workspace/src/tasks-runner/run-command.ts +++ b/packages/workspace/src/tasks-runner/run-command.ts @@ -38,7 +38,9 @@ async function getTerminalOutputLifeCycle( overrides: Record, runnerOptions: any ): Promise<{ lifeCycle: LifeCycle; renderIsDone: Promise }> { - const showVerboseOutput = !!overrides.verbose; + const showVerboseOutput = + !!overrides.verbose || process.env.NX_VERBOSE_LOGGING === 'true'; + if (terminalOutputStrategy === 'run-one') { if ( shouldUseDynamicLifeCycle(tasks, runnerOptions) &&