From 36a2349674fe4919d1e22e646c431734b78f7664 Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Thu, 10 Dec 2015 16:36:58 -0600 Subject: [PATCH] run some build tasks in parallel --- gulpfile.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 89abf5c949..f028b43e73 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -47,10 +47,9 @@ var tscReporter = { gulp.task('build', function(done) { runSequence( + 'copy.web-animations', 'bundle', - 'e2e', - 'sass', - 'fonts', + ['e2e', 'sass', 'fonts'], done ); })