概述
grunt-contrib-clean插件-tasks目录下clean.js文件中配置了一个clean任务:
grunt.registerMultiTask('clean', 'Clean files and folders.', function() {
// Merge task-specific and/or target-specific options with these defaults.
var options = this.options({
force: grunt.option('force') === true,
'no-write': grunt.option('no-write') === true,
});
grunt.verbose.writeflags(options, 'Options');
// Clean specified files / dirs.
this.filesSrc.forEach(function(filepath) {
clean(filepath, options);
});
});
所以在Gruntfile.js中配置任务的时候很简单:
grunt.initConfig({
clean : {
dist : ['/a','/b','/c'],
server : 'a'
}
}),
这样执行 grunt clean:dist 命令时就可以成功删除 a.b.c 目录下的文件。
[url]https://www.npmjs.com/package/grunt-contrib-clean[/url]
最后
以上就是难过乌龟为你收集整理的grunt配置-clean任务的全部内容,希望文章能够帮你解决grunt配置-clean任务所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复