javascript

Default task in Gulp

var gulp = require('gulp');

gulp.task('task1', function() { /** TASK 1 Process */ });

gulp.task('task2', function() { /** TASK 1 Process */ });

gulp.task('default', gulp.series(
    'task1',
    'task2'
));

You can define the default task in gulp by creating a task named as 'default' and pass gulp.series or gulp.parallel to it to run multiple tasks. The default tasks can be run using the gulp command in the terminal.

Was this helpful?