gulp报错:The following tasks did not complete: task_name
问题描述在如下代码运行时报错:gulp.task('A',function(){console.log('A')});gulp.task('B',function(){//运行B之前先去运行Aconsole.log('B')});gulp.task('my-task',gulp.series("A","B",function(){console.log("AB")}))报错如下:D:\me\gul