Slide 10
Slide 10 text
詳細: https://github.com/gulpjs/gulp/compare/v3.9.1...4.0
移行: gulp v3.x -> v4.x
gulp.task(‘check’, gulp.parallel(‘lint’, ‘test’));
gulp.task(‘check’, [‘lint’, ‘test’]);
gulp v3.x
gulp v4.x
この記法は廃止
parallel / series を用いて記述
並列 / 直列記述が容易に