Gulp管道分隔目标文件夹

时间:2014-06-23 14:54:53

标签: gulp gulp-less gulp-watch

我正在编写一个gulp任务,通过几个文件夹和监视较少的文件。我想将已编译的css管道传回较少文件来自的同一文件夹。不幸的是,我似乎找不到给每个文件分别输出文件夹的好方法。

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);
    });
});

1 个答案:

答案 0 :(得分: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);
    });
});