gulp.src出现File not found报错问题

问题描述:使用gulp的时候gulp.src传递的目录不存在而导致进程终止报错Error: File not found with singular glob: d:/wamp/www/qc_h5/build (if this was purposeful, use `allowEmpty` option)

gulp.src出现File not found报错问题_第1张图片

其实上面也已经说得很清除了哈,只需要添加 {allowEmpty: true}就可以了

gulp.task('dev-clean', function() {
    return gulp.src(devPath.buildPath, {allowEmpty: true})
        .pipe(clean());
});

 

你可能感兴趣的:(gulp,gulp,目录不存在)