概述
Gruntfile.js三种写作方式
++注:我们将以grunt中的copy命令举例++
1. src和desk模式(采用不同任务来执行操作)
copy:{
build-1:{
src:'<%= config.src %>/index.html',
dest:'<%= config.app %>/index.html'
},
build-2:{
src:'<%= config.src %>/js/index.js',
dest:'<%= config.app %>/js/index.js'
}
}
2. files数组模式(采用files数组模式定义不同的src和dest对象)
copy:{
build:{
files:[
{
src:'<%= config.src %>/index.html',
dest:'<%= config.app %>/index.html'
},
{
src:'<%= config.src %>/js/index.js',
dest:'<%= config.app %>/js/index.js'
}
]
}
}
3. files对象模式(采用files对象模式定义不同的src和dest属性)
copy:{
build:{
files:{
'<%= config.app %>/index.html':'<%= config.src %>/index.html',
'<%= config.app %>/js/index.js’:'<%= config.src %>/js/index.js'
}
}
}
转载于:https://www.cnblogs.com/reamd/p/4927636.html
最后
以上就是俭朴魔镜为你收集整理的grunt操作之Gruntfile.js的全部内容,希望文章能够帮你解决grunt操作之Gruntfile.js所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复