[GULP] Gulp Tutorial
https://www.tutorialspoint.com/gulp/index.htm
Chú ý: Để kết hợp được các task với nhau từ phiên bản 4.x trở đi chúng ta phải
gulp.task('default', gulp.series('css','js'));
Chú ý: Nếu thì sử dụng
gulp.task('default', gulp.series('a', 'b', 'c'));
Thì sử dụng
gulp.task('default', gulp.parallel('a', 'b', 'c'));
Last updated
Was this helpful?