bintastic
    Preparing search index...

    Type Alias Options

    Options: CommonOptions<false>

    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 only stdout, stderr, all (both stdout and stderr), ipc, fd3, etc.

    // Same value for stdout and stderr
    await execa({verbose: 'full'})`npm run build`;

    // Different values for stdout and stderr
    await execa({verbose: {stdout: 'none', stderr: 'full'}})`npm run build`;