我在自耕农中使用角度发生器.在gruntfile.js中,每个html文件都/app/views
被复制到dist/views
.但我喜欢将指令模板保存在与指令本身相同的文件夹中.
例:
/app/scripts/widgets/mywidget.directive.js /app/scripts/widgets/mywidget.tmpl.html
当我构建项目时,我希望html文件最终处于与上面相同的文件夹结构中.
这应该可以在gruntfile.js的copy部分中完成.
copy: { dist: { files: [{ expand: true, dot: true, cwd: '<%= yeoman.app %>', dest: '<%= yeoman.dist %>', src: [ '*.{ico,png,txt}', '*.html', 'images/{,*/}*.{webp}', 'styles/fonts/{,*/}*.*' ] }...
我试着在src数组中添加它:
'<%= yeoman.dist %>/scripts/{,*/}*.tmpl.html'
不工作.有任何想法吗?