diff --git a/lib/monitor/run.js b/lib/monitor/run.js index 3f7414c8..988e7e9c 100644 --- a/lib/monitor/run.js +++ b/lib/monitor/run.js @@ -161,6 +161,11 @@ function run(options) { utils.log.fail('app crashed - waiting for file changes before' + ' starting...'); child = null; + if (config.options.restartable) { + // stdin needs to kick in again to be able to listen to the + // restart command + process.stdin.resume(); + } } } });