gulp-clean:无法删除当前工作目录之外的文件

时间:2017-03-24 11:05:23

标签: node.js angular gulp

当我在angular2项目中运行命令时

  

清洁。即使我使用,我也面临以下错误   > gulp clean - force但没有成功。   请任何人解释一下这个问题的根本原因或问题是什么。我将高度赞赏吗?   enter image description here

2 个答案:

答案 0 :(得分:2)

我相信你必须在你的gulp任务中设置为true

https://www.npmjs.com/package/gulp-clean

答案 1 :(得分:1)

force中调用clean()时,您可以设置gulpfile.js选项为true。 例如:

gulp.task('clean', function () {
  return gulp.src(
    ['***your filename/folder here***'],
    {read: false}
  )
    .pipe(clean({force: true})); // this is force option
});