gulp.task('default', gulp.series('clean', gulp.parallel('scripts', 'styles'), function() {...}));
The new and improved version in gulp4.0. The difference here which fixes the previous problems of having to rebuild every-time it that, the dependencies can be run independently. So styles can be run by itself without running cleanup beforehand.