Skip to content

Commit be5d4e8

Browse files
committed
fix: revert 'inherit' on stdin
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
1 parent 58a236e commit be5d4e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/monitor/run.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function run(options) {
3737
var stdio = ['pipe', 'pipe', 'pipe'];
3838

3939
if (config.options.stdout) {
40-
stdio = [process.send || config.required ? 'pipe' : 'inherit',
40+
stdio = ['pipe',
4141
process.stdout,
4242
process.stderr,];
4343
}

0 commit comments

Comments
 (0)