From be5d4e8d13a6dcc16c65b5bce59edef54496a8ae Mon Sep 17 00:00:00 2001 From: Remy Sharp Date: Thu, 18 Aug 2016 22:04:42 +0100 Subject: [PATCH] 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 https://github.com/FormidableLabs/webpack-dashboard/issues/16 --- lib/monitor/run.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/monitor/run.js b/lib/monitor/run.js index a012ac35..39d8d6d2 100644 --- a/lib/monitor/run.js +++ b/lib/monitor/run.js @@ -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,]; }