admin管理员组文章数量:1350353
Not sure if I'm missing something but I have the following grunt setup for grunt-contrib-copy tasks.
copy: {
build: {
files: {
"server-dist/": "server/**/*.!(coffee)",
"client-dist/": "client/**/*.!(coffee)"
}
}
}
The client-dist copies as I expect recursively running through the file tree but the server-dist all sub-folders get flattened to the base folder. Any ideas why this is happening? Here is the i/o
server/
views/
errors/
404.jade
layouts/
base.jade
bees
server/
errors/
layouts/
base.jade
the views folder gets pletely blown out. One more thing...when I removed !(coffee) it works but I need to exclude coffee files since I have a grunt-coffee watch task running.
Not sure if I'm missing something but I have the following grunt setup for grunt-contrib-copy tasks.
copy: {
build: {
files: {
"server-dist/": "server/**/*.!(coffee)",
"client-dist/": "client/**/*.!(coffee)"
}
}
}
The client-dist copies as I expect recursively running through the file tree but the server-dist all sub-folders get flattened to the base folder. Any ideas why this is happening? Here is the i/o
server/
views/
errors/
404.jade
layouts/
base.jade
bees
server/
errors/
layouts/
base.jade
the views folder gets pletely blown out. One more thing...when I removed !(coffee) it works but I need to exclude coffee files since I have a grunt-coffee watch task running.
Share Improve this question asked Nov 15, 2012 at 0:47 imraneimrane 1,5422 gold badges16 silver badges30 bronze badges2 Answers
Reset to default 9A followup to zacks ment:
copy: {
mytask: {
files: [
{expand:true, cwd:'dev-js/abc/', dest:'js/test/', src:['def.js']}
]
}
}
This copies the file ./dev-js/abc/def.js
to ./js/test/def.js
- at least on my 0.4.1 version. Zacks ment and the link included was very helpful, especially the fact, that basePath
has been replaced.
Apparently the grunt-contrib-copy
task has a sophisticated logic that's trying to automatically detect the base directory for copying source files (see related issue)
The solution is to explicitly specify the basePath
option:
copy: {
build: {
files: {
"server-dist/": "server/**/*!(.coffee)"
},
options: {
basePath: 'server' // base directory in the source path
}
}
}
P.S. I'm not sure, however, why removing !(.coffee)
changes the behaviour for you. I tried the same on my local machine and get the same results when specifying "server/**/*"
instead of "server/**/*.!(coffee)"
(i.e. the views
folder is skipped)
本文标签: javascriptFlattening of File Tree when using Grunt Copy TaskStack Overflow
版权声明:本文标题:javascript - Flattening of File Tree when using Grunt Copy Task - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743877369a2554571.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论