what's the difference between using 'gulp default task' and 'run-sequence npm modules if i have two tasks to execute,the result was the same.so i have no idea why should use 'run-sequence'?
1.gulp default task
gulp.task('default',['task1','task2']);
2.'run sequence npm modules'
var runSequence = require('run-sequence');
gulp.task('default', function(callback) {
runSequence('task1', 'task2', callback);
});
i'm new in gulp,i saw the tutorial video online,and they teach to use 'run-sequence module' to advance the gulp skill,so i have got the question.