ehmicky

Results 372 comments of ehmicky

Hi @bengunnewijkGeonovum, The value of the `cwd` option never needs to be quoted, because it is not interpreted by a shell. Spaces are always allowed in both Unix and Windows....

@sindresorhus Is this ok to merge?

Closing as the issue is not related to Node.js.

We just added 3 methods related to piping: ```js await execa('echo', ['unicorns']).pipeStdout(stream); await execa('echo', ['unicorns']).pipeStderr(stream); await execa('echo', ['unicorns'], {all: true}).pipeAll(stream); ``` For `stdin`, the `input` option can be used with...

@sindresorhus Should we close this issue?

See also https://github.com/sindresorhus/execa/issues/617

Status update. Done for: - `cwd` option - `localDir` option - `stdin`/`stdout`/`stderr` options Not done for: - `execPath` option - `nodePath` option - `inputFile` option - `file` argument

`execPath` done at https://github.com/sindresorhus/npm-run-path/pull/16 and #633 `nodePath` done at #632. `inputFile` done at #630. `file` argument done at https://github.com/sindresorhus/execa/pull/631

Only one missing: the `shell` option, done at #635.