From 93a653013b7775e04642813964d80886ed644641 Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Wed, 16 Dec 2015 16:40:57 -0600 Subject: [PATCH] chore(build): build tasks can be run in parallel --- gulpfile.js | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index dd47296f19..fa4bae9d54 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -63,18 +63,11 @@ var babelOptions = { } } -gulp.task('build', function(done) { - runSequence( - 'copy.web-animations', - 'bundle', - ['e2e', 'sass', 'fonts'], - done - ); -}) +gulp.task('build', ['bundle.system', 'e2e.build', 'copy.web-animations', 'sass', 'fonts']); gulp.task('clean.build', function(done) { runSequence('clean', 'build', done); -}) +}); gulp.task('watch', function(done) { runSequence(