Skip to content

Commit 163d80a

Browse files
committed
fix(compiler_cli): make sure the generated code gets compiled via tic
1 parent 9e05814 commit 163d80a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1053,7 +1053,7 @@ gulp.task('!test.compiler_cli.codegen', function(done) {
10531053
try {
10541054
require('./dist/js/cjs/compiler_cli')
10551055
.main("tools/compiler_cli/test")
1056-
.then(function() { done(); })
1056+
.then(function() { runTsc('tools/compiler_cli/test', done); })
10571057
.catch(function(rej) { done(new Error(rej)); });
10581058
} catch (err) {
10591059
done(err);

0 commit comments

Comments
 (0)