Skip to content

Commit f402ecb

Browse files
committed
refactor: use process.stdout.write
1 parent 0e66ac8 commit f402ecb

File tree

1 file changed

+1
-1
lines changed
  • packages/nx-plugin/src/executors/internal

1 file changed

+1
-1
lines changed

packages/nx-plugin/src/executors/internal/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export function createCliCommandObject(options?: {
2626
logger.error(error.message);
2727
},
2828
onStdout: data => {
29-
logger.log(data);
29+
process.stdout.write(data);
3030
},
3131
},
3232
};

0 commit comments

Comments
 (0)