We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73fdfa6 commit c15877fCopy full SHA for c15877f
packages/nx-plugin/src/executors/cli/executor.ts
@@ -44,12 +44,8 @@ export default async function runAutorunExecutor(
44
await executeProcess({
45
...createCliCommandObject({ command, args: cliArgumentObject }),
46
observer: {
47
- onError: error => {
48
- logger.error(error.message);
49
- },
50
- onStdout: data => {
51
- process.stdout.write(data);
52
+ onError: logger.error,
+ onStdout: process.stdout.write,
53
},
54
...(context.cwd ? { cwd: context.cwd } : {}),
55
});
0 commit comments