From 266eea528cb23cda3d6ffdf151312e9f07a58dfb Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Tue, 19 Jan 2016 14:46:15 -0600 Subject: [PATCH] fix(): fix package task not finishing --- gulpfile.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index ad09b62ebf..feb562790e 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -424,7 +424,13 @@ gulp.task('src', function(done){ gulp.task('src.release', function(done) { IS_RELEASE = true; - gulp.start('src', done); + runSequence( + 'clean', + 'copy.libs', + ['bundle', 'sass', 'fonts', 'copy.scss'], + 'transpile.typecheck', + done + ); }); gulp.task('package', ['src.release'], function(done){