import { StderrToStdoutStringAsyncIterableOutputHandler } from "https://deno.land/x/proc@0.20.5/legacy/runners/handlers/stderr-to-stdout-string-asynciterable-handlers.ts";
Redirect stderr
into stdout
. This handler is always unbuffered so that
the lines come out as close to real-time as possible.
Constructors
new
StderrToStdoutStringAsyncIterableOutputHandler(errorHandler: ErrorHandler)Methods
protected
handleStderr(stderr: MultiCloseReader): AsyncIterableIterator<string>protected
process(stdout: MultiCloseReader,
stderr: MultiCloseReader,
process: MultiCloseProcess,
input: { stdin: MultiCloseWriter; handlerResult: Promise<null | Error>; },
processOutput(): AsyncIterable<string>
stdout: MultiCloseReader,
stderr: MultiCloseReader,
process: MultiCloseProcess,
input: { stdin: MultiCloseWriter; handlerResult: Promise<null | Error>; },