我正在尝试在 grunting 时压缩文件夹。我在 Gruntfile.js 中使用了以下代码
compress: {
main : {
options : {
archive : "myapp.zip"
},
files : [
{ expand: true, src : "src/partials/templates", cwd : "target/dev/" }
]
}
}
文件夹结构
--mainfolder
----src
------partials
----target
------dev
----gruntfile.js
但它不起作用。我是新来的。我错过了什么吗?为什么它不工作?
请帮忙,谢谢。