rename to built

This commit is contained in:
Jonathan Rainville 2018-07-09 14:26:10 -04:00 committed by Iuri Matias
parent 3700323280
commit 4fedf704a8
1 changed files with 3 additions and 3 deletions

View File

@ -101,13 +101,13 @@ class Pipeline {
// JS files
async.waterfall([
function runWebpack(next) {
let resulted = false;
let built = false;
const webpackProcess = new ProcessLauncher({
modulePath: utils.joinPath(__dirname, 'webpackProcess.js'),
logger: self.logger,
events: self.events,
exitCallback: function (code) {
if (!resulted) {
if (!built) {
return next(`File building of ${file.filename} exited with code ${code} before the process finished`);
}
if (code) {
@ -119,7 +119,7 @@ class Pipeline {
webpackProcess.send({action: constants.pipeline.build, file, importsList});
webpackProcess.once('result', constants.pipeline.built, (msg) => {
resulted = true;
built = true;
webpackProcess.kill();
return next(msg.error);
});