I have several tasks in gulp, and all of them except that you can run in parallel. Consider an example:
var gulp = require('gulp'); gulp.task('clean', function() { // clean up output folder }); gulp.task('copy1', function() { // writes stream in the output folder }); gulp.task('copy2', function() { // writes stream in the output folder }); gulp.task('default', ['clean', 'copy1', 'copy2']);
In this example, I need to run copy1 and copy2 in parallel, but only after clean . How can I do this trick?
source share