使用grunt将一个文件复制到多个文件夹

时间:2015-03-05 18:26:43

标签: gruntjs grunt-contrib-copy

是否可以使用Grunt将一个文件复制到多个目录? 即:

expand: true,
cwd: '<%= yeoman.app %>',
dest: '<%= yeoman.app %>/client/*',
src: 'core/index.html'

*是客户端文件夹中的所有子文件夹。

谢谢!

1 个答案:

答案 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' },
]