是否可以使用Grunt将一个文件复制到多个目录? 即:
expand: true,
cwd: '<%= yeoman.app %>',
dest: '<%= yeoman.app %>/client/*',
src: 'core/index.html'
*是客户端文件夹中的所有子文件夹。
谢谢!
答案 0 :(得分:3)
*
无法实现,您必须使用files
选项映射任何文件夹。在这种情况下,您不需要expand
选项:
files: [
{ src: 'core/index.html' dest: '<%= yeoman.app %>/folder1' },
{ src: 'core/index.html: '<%= yeoman.app %>/folder2' },
{ src: 'core/index.html' <%= yeoman.app %>: 'dest/folder3' },
]