From ae2b7ef5dd6b38225a0ef49db49d23ebef89c5df Mon Sep 17 00:00:00 2001 From: Jason Jean Date: Mon, 5 Jul 2021 15:48:19 -0400 Subject: [PATCH] fix(core): print count of tasks (#6248) --- .../workspace/src/tasks-runner/forked-process-task-runner.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/workspace/src/tasks-runner/forked-process-task-runner.ts b/packages/workspace/src/tasks-runner/forked-process-task-runner.ts index 7092bfdc3c..92ab0dc3cb 100644 --- a/packages/workspace/src/tasks-runner/forked-process-task-runner.ts +++ b/packages/workspace/src/tasks-runner/forked-process-task-runner.ts @@ -36,7 +36,7 @@ export class ForkedProcessTaskRunner { const count = Object.keys(taskGraph.tasks).length; if (count > 1) { output.logSingleLine( - `Running ${output.bold()} ${output.bold( + `Running ${output.bold(count)} ${output.bold( 'tasks' )} with ${output.bold(executorName)}` );