无法使用grunt-contrib-clean跳过文件

时间:2015-03-17 21:03:13

标签: javascript coffeescript gruntjs

对于我的生活,我无法完成跳过某些文件的清洁任务。

clean: {
  empty_dist: ['./dist/**/*', '!./dist/home/config.js']
}

当我运行时,我的dist/目录已完全清空,包括我想跳过的dist/home/config.js

我正在使用版本grunt clean:empty_dist

^0.5.0运行它

The docs are here.

另外,另外,'**/*''*'

之间有什么区别

1 个答案:

答案 0 :(得分:0)

看起来dist/home(本身)被删除了。也许您应该将初始匹配更改为./dist/**/*.js(或转义!./dist/home)。