Following task doesn't run the copyfonts and imagemin tasks inside the function body. When I call them individually they work fine.
gulp.task('build', gulp.series('clean', function(done){
gulp.parallel('copyfonts', 'imagemin');
done();
}));