fix(compiler_cli): make sure the generated code gets compiled via tic

This commit is contained in:
Tobias Bosch 2016-04-30 18:40:27 -07:00
parent 9e05814212
commit 163d80adb7
1 changed files with 1 additions and 1 deletions

View File

@ -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);