Node.js/Gulp - 循环 Gulp 任务 [英] Node.js / Gulp - Looping Through Gulp Tasks

查看:33
本文介绍了Node.js/Gulp - 循环 Gulp 任务的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想遍历一个对象,并在每次迭代时将文件路径数组传递给 gulp.src,然后对这些文件进行一些处理.下面的代码用于说明目的,实际上不会工作,因为 return 语句在第一次通过时终止循环.

I'd like to loop through an object and pass an array of file paths to gulp.src on each iteration and then do some processing on those files. The code below is for illustration purposes and won't actually work since the return statement kills the loop on the first pass.

gulp.task('js', function(){
    for (var key in buildConfig.bundle) {
        return gulp.src(bundleConfig.bundle[key].scripts)
            .pipe(concat(key + '.js'));
            // DO STUFF
    }
});

这是基本的想法.关于如何做到这一点的任何想法?

That's the basic idea. Any ideas on how to do this?

推荐答案

我能够使用合并流解决这个问题.如果有人感兴趣,这是代码.这个想法是在循环中创建一个流数组,并在完成迭代后合并它们:

I was able to pull this off using merge-streams. If anyone's interested, here's the code. The idea is to create an array of streams inside your loop and merge them when finished iterating:

var merge = require('merge-stream');

gulp.task('js', function(){

    // Init vars
    var jsBundleStreams = [];
    var i = 0;

    // Create array of individual bundle streams
    for (var key in buildConfig.bundle) {
        jsBundleStreams[i] = gulp.src(bundleConfig.bundle[key].scripts)
            .pipe(concat(key + '.js'))
            .pipe(gulp.dest('./public/papasteftest/'));
        i++;
    }

    // Merge and return streams
    return merge.apply(this, jsBundleStreams);

});

这篇关于Node.js/Gulp - 循环 Gulp 任务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆