我想在/stubs/foo.txt
的所有子目录中复制文件/something/
,例如
/something/foo.txt
/something/else/foo.txt
我试过了:
gulp.task('copy', function () {
return gulp.src('/stubs/foo.txt')
.pipe(gulp.dest('/something/**/*'));
});
但似乎Gulp不支持目标文件夹中的变量。
答案 0 :(得分:0)
不是理想的解决方案,但您可以使用多个目标管道。