3

我正在编写一个遍历多个文件夹并监视更少文件的 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);
    });
});
4

1 回答 1

1

我相信您可以一次处理一个文件gulp.watch

gulp.task('less:watch', function() {
    gulp.watch('src/**/less/**/*.less',function(evnt) {
      return gulp.src(evnt.path)
        .pipe(less({
          paths: [ path.join(__dirname, 'less', 'includes') ]
        }))
        .pipe(gulp.dest(path.dirname(evnt.path)))
        .on('error', gutil.log);
    });
});
于 2014-06-25T20:09:15.137 回答