mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
chore(build): build tasks can be run in parallel
This commit is contained in:
11
gulpfile.js
11
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(
|
||||
|
||||
Reference in New Issue
Block a user