run some build tasks in parallel

This commit is contained in:
Tim Lancina
2015-12-10 16:36:58 -06:00
parent 21f0eaa8da
commit 36a2349674

View File

@ -47,10 +47,9 @@ var tscReporter = {
gulp.task('build', function(done) {
runSequence(
'copy.web-animations',
'bundle',
'e2e',
'sass',
'fonts',
['e2e', 'sass', 'fonts'],
done
);
})