_>
I’m getting:
Error: stdout maxBuffer exceeded
at Socket.<anonymous> (child_process.js:259:14)
at emitOne (events.js:96:13)
at Socket.emit (events.js:188:7)
at readableAddChunk (_stream_readable.js:177:18)
at Socket.Readable.push (_stream_readable.js:135:10)
at Pipe.onread (net.js:542:20)
on a long running process spawned using run(‘’, { async: true })
suppodsedly the process is not pringint anything to stdout. Any ideas of what could be done to avoid this?
run
will only return executed command value only when stdio: 'pipe'
option provided