From 60e1278939f481377968dd2a42202044ecb0bbf7 Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Thu, 4 Feb 2016 16:31:47 -0600 Subject: [PATCH] fix(build): tell gulp when finished building --- gulpfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 9a8d5ee63a..13c5a7e8f9 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -69,7 +69,8 @@ var babelOptions = { gulp.task('build', function(done){ runSequence( 'copy.libs', - ['bundle', 'sass', 'fonts', 'copy.scss'] + ['bundle', 'sass', 'fonts', 'copy.scss'], + done ); });