在gulp中我想处理一些文件,但在编写gulp.src([...])时我不知道我想要处理的所有文件。我当时只知道一些文件,我想要处理的其他文件取决于已知的文件依赖项。我的问题是有没有办法可以在管道中间添加源文件?伪代码:
gulp.src([some files I already knew]).pipe(gp_tap(function(file){
// some actions;
// get file dependencies
// Here I want to add the dependencies as the source file
}))