multidest.js 1.5 KB
Newer Older
B
bryk 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// Copyright 2015 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

import gulp from 'gulp';
import through from 'through2';

/**
 * Utility function for specifying multiple gulp.dest destinations.
 * @param {string|!Array<string>} outputDirs destinations for the gulp dest function calls
21
 * @param {function(?Error=)|undefined} opt_doneFn - Callback.
B
bryk 已提交
22 23
 * @return {stream}
 */
24
export function multiDest(outputDirs, opt_doneFn) {
B
bryk 已提交
25 26 27 28 29 30 31 32 33
  if (!Array.isArray(outputDirs)) {
    outputDirs = [outputDirs];
  }
  let outputs = outputDirs.map((dir) => gulp.dest(dir));
  let outputStream = through.obj();

  outputStream.on('data', (data) => outputs.forEach((dest) => { dest.write(data); }));
  outputStream.on('end', () => outputs.forEach((dest) => { dest.end(); }));

34 35
  // build a closure to track all streams
  let stillRunning = outputs.length;
36
  if (opt_doneFn) {
37 38 39
    outputs.forEach((output) => output.on('finish', () => {
      stillRunning--;
      if (stillRunning === 0) {
40
        opt_doneFn();
41 42 43 44
      }
    }));
  }

B
bryk 已提交
45 46
  return outputStream;
}