我的项目文件夹如下所示:
project
__src
____main
______webapp
________WEB-INF
__________app
____________components
//Angular files here.
我有一个使用 ng-annotate 配置的繁重任务:
ngAnnotate: {
options: {
singleQuotes: true
},
app: {
files: [{
expand: true,
src: 'src/main/webapp/WEB-INF/app/components/**/*.js',
ext: '.safe.js',
dest: 'src/main/webapp/WEB-INF/app/min',
extDot: 'last'
}]
}
},
我想要文件夹“src/main/webapp/WEB-INF/app/min”中的所有带注释的文件,全部放在一起。
我的问题是 grunt 任务将整个路由创建到我介意的“min”文件夹中的文件:
我在 src/main/webapp/WEB-INF/app/components/module/module.js 中有一个文件我想要 src/main/webapp/WEB-INF/app/min/module.safe.js 中的那个文件
但我得到 src/main/webapp/WEB-INF/app/min/src/main/webapp/WEB-INF/app/components/module/module.safe.js
我怎样才能在不创建整个路径的情况下完成这项任务?