Skip to content

Commit 0afba71

Browse files
committed
reconstruct outputs everytime
fix browserify#68, browserify#59 - To avoid writing to ended writeStream, outputs will be constructed everytime - In the scenario that user wanna use outpipe, the `outopt` will be kept as string, so we can determine the user's attempt in later codes and do the relavant opperations
1 parent dfcf69a commit 0afba71

File tree

1 file changed

+17
-14
lines changed

1 file changed

+17
-14
lines changed

index.js

+17-14
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,6 @@ module.exports = function f (b, opts) {
2828
var needRecords = !files.length;
2929

3030
var outopt = defined(opts.outputs, opts.output, opts.o);
31-
if (outopt && !isarray(outopt)) outopt = [outopt];
32-
var outputs = defined(outopt, []).map(function (o) {
33-
if (isStream(o)) return o;
34-
else return fs.createWriteStream(o);
35-
});
36-
if (!isarray(outputs) && isStream(outputs)) outputs = [ outputs ];
37-
else if (!isarray(outputs)) outputs = [];
38-
39-
function moreOutputs (file) {
40-
if (isarray(outopt)) return [];
41-
if (!outopt) return [];
42-
var xopts = { env: xtend(process.env, { FILE: file }) };
43-
return [ outpipe(outopt, xopts) ];
44-
}
4531

4632
opts.objectMode = true;
4733
opts.raw = true;
@@ -57,6 +43,23 @@ module.exports = function f (b, opts) {
5743
addHooks();
5844

5945
function addHooks () {
46+
var outputs;
47+
if (isarray(outopt)) {
48+
outputs = outopt.map(function (o) {
49+
if (isStream(o)) return o;
50+
return fs.createWriteStream(o);
51+
});
52+
} else {
53+
outputs = [];
54+
}
55+
56+
function moreOutputs (file) {
57+
if (isarray(outopt)) return [];
58+
if (!outopt) return [];
59+
var xopts = { env: xtend(process.env, { FILE: file }) };
60+
return [ outpipe(outopt, xopts) ];
61+
}
62+
6063
b.pipeline.get('record').push(through.obj(function(row, enc, next) {
6164
if (row.file && needRecords) {
6265
files.push(row.file);

0 commit comments

Comments
 (0)