Gulp划分流,使用两个目的地(流)

时间:2015-12-23 13:07:02

标签: stream gulp

我有一个gulp流,但我想将流分成两个,将一半放在一个目的地,另一半放在另一个目的地。

我的想法是我需要将流分叉两次,过滤每个新流,在每个流上使用gulp.dest,然后将它们合并回来,然后将它们返回到gulp。

我目前有代码,

function dumpCpuProfiles(profileDirectory) {
  const _ = require('highland');
  const stream = _();

  const cpuProfiles = stream
    .fork()
    .pipe(filter('*.cpuprofile'))
    .pipe(gulp.dest(profileDirectory));

  const noCpuProfiles = _(cpuProfiles).filter(() => false);

  const otherFiles = stream
    .fork()
    .pipe(filter(['**', '!**/*.cpuprofile']));

  return _([noCpuProfiles, otherFiles]).merge();
}

然而,我收到了错误,

TypeError: src.pull is not a function
at /home/user/project/node_modules/highland/lib/index.js:3493:17
at Array.forEach (native)
at pullFromAllSources (/home/user/project/node_modules/highland/lib/index.js:3492:15)
at Stream._generator (/home/user/project/node_modules/highland/lib/index.js:3449:13)
at Stream._runGenerator (/home/user/project/node_modules/highland/lib/index.js:949:10)
at Stream.resume (/home/user/project/node_modules/highland/lib/index.js:811:22)
at Stream._checkBackPressure (/home/user/project/node_modules/highland/lib/index.js:713:17)
at Stream.resume (/home/user/project/node_modules/highland/lib/index.js:806:29)
at Stream.pipe (/home/user/project/node_modules/highland/lib/index.js:895:7)
at Gulp.<anonymous> (/home/user/project/gulpfile.js:189:6)

输出一个流,所以我不太清楚错误是什么。任何帮助都会非常有用!谢谢!

1 个答案:

答案 0 :(得分:0)

我使用这个小小的monkeypatching技巧来实现它

Object.prototype.fork = function(_fn) {
  _fn(this);
  return this;
};

Stream只是事件发射器,管道方法不会返回旧流而是新流,因此您可以非常轻松地构建fork功能。