Skip to content

Commit

Permalink
fix: revert 'inherit' on stdin
Browse files Browse the repository at this point in the history
Fixes #894
Fixes #895

I'll have to continue investigation as to how we deal with spawned clients setting raw on stdin. Will break #890 and FormidableLabs/webpack-dashboard#16
  • Loading branch information
remy committed Aug 18, 2016
1 parent 58a236e commit be5d4e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/monitor/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function run(options) {
var stdio = ['pipe', 'pipe', 'pipe'];

if (config.options.stdout) {
stdio = [process.send || config.required ? 'pipe' : 'inherit',
stdio = ['pipe',
process.stdout,
process.stderr,];
}
Expand Down

0 comments on commit be5d4e8

Please sign in to comment.