我正在编写一个遍历多个文件夹并监视更少文件的 gulp 任务。我想将编译后的 css 通过管道返回到 less 文件来自的同一文件夹。不幸的是,我似乎找不到为每个文件提供一个单独的输出文件夹的好方法。
gulp.task('less:watch', function() {
watch({
glob: 'src/**/less/**/*.less',
emit: 'one',
emitOnGlob: false
},function(files){
return files
.pipe(less({
paths: [ path.join(__dirname, 'less', 'includes') ]
}))
// I need to pipe the files back to the folder they were generated from
.pipe(gulp.dest(path.join(__dirname, 'less')))
.on('error', gutil.log);
});
});