Some options are related to the subprocess output: verbose, lines, stripFinalNewline, buffer, maxBuffer. By default, those options apply to all file descriptors (stdout, stderr, etc.). A plain object can be passed instead to apply them to only stdout, stderr, all (both stdout and stderr), ipc, fd3, etc.
Example
// Same value for stdout and stderr awaitexeca({verbose:'full'})`npm run build`;
// Different values for stdout and stderr awaitexeca({verbose: {stdout:'none', stderr:'full'}})`npm run build`;
Subprocess options.
Some options are related to the subprocess output:
verbose,lines,stripFinalNewline,buffer,maxBuffer. By default, those options apply to all file descriptors (stdout,stderr, etc.). A plain object can be passed instead to apply them to onlystdout,stderr,all(both stdout and stderr),ipc,fd3, etc.