From e19ee1f5581700fa32329e74b357607f2b5eac0c Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Mon, 9 Jul 2018 13:50:03 -0400 Subject: [PATCH] log error when pipeline dies --- lib/pipeline/pipeline.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/lib/pipeline/pipeline.js b/lib/pipeline/pipeline.js index 16d37f6ab..31b971852 100644 --- a/lib/pipeline/pipeline.js +++ b/lib/pipeline/pipeline.js @@ -101,15 +101,25 @@ class Pipeline { // JS files async.waterfall([ function runWebpack(next) { + let resulted = false; const webpackProcess = new ProcessLauncher({ modulePath: utils.joinPath(__dirname, 'webpackProcess.js'), logger: self.logger, - events: self.events + events: self.events, + exitCallback: function (code) { + if (!resulted) { + return next(`File building of ${file.filename} exited with code ${code} before the process finished`); + } + if (code) { + self.logger(__('File building process exited with code ', code)); + } + } }); webpackProcess.send({action: constants.pipeline.init, options: {}}); webpackProcess.send({action: constants.pipeline.build, file, importsList}); webpackProcess.once('result', constants.pipeline.built, (msg) => { + resulted = true; webpackProcess.kill(); return next(msg.error); });