From c6ae31a9ae071abd31e2f25060f7aa22a293959f Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Tue, 23 Feb 2016 09:33:16 +0100 Subject: make build fail on compile errors --- gulpfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gulpfile.js') diff --git a/gulpfile.js b/gulpfile.js index 28159b34305..81ed06e4de1 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -39,7 +39,7 @@ var tsOptions = { sourceRoot: util.toFileUri(rootDir) }; -function createCompile(build) { +function createCompile(build, emitError) { var opts = _.clone(tsOptions); opts.inlineSources = !!build; @@ -67,14 +67,14 @@ function createCompile(build) { sourceRoot: tsOptions.sourceRoot })) .pipe(tsFilter.restore) - .pipe(quiet ? es.through() : reporter()); + .pipe(quiet ? es.through() : reporter.end(emitError)); return es.duplex(input, output); }; } function compileTask(out, build) { - var compile = createCompile(build); + var compile = createCompile(build, true); return function () { var src = gulp.src('src/**', { base: 'src' }); -- cgit v1.2.3