From 163d80adb7408fa435650ccbdbd1a3b1c4e84215 Mon Sep 17 00:00:00 2001 From: Tobias Bosch Date: Sat, 30 Apr 2016 18:40:27 -0700 Subject: [PATCH] fix(compiler_cli): make sure the generated code gets compiled via tic --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 804f35282e..cd85d84a79 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1053,7 +1053,7 @@ gulp.task('!test.compiler_cli.codegen', function(done) { try { require('./dist/js/cjs/compiler_cli') .main("tools/compiler_cli/test") - .then(function() { done(); }) + .then(function() { runTsc('tools/compiler_cli/test', done); }) .catch(function(rej) { done(new Error(rej)); }); } catch (err) { done(err);