tree-stream
Advanced tools
Comparing version 1.0.11 to 1.0.12
@@ -229,2 +229,11 @@ var once = require('once') | ||
// Handle stdout stream differently because it won't emit finish. | ||
if (terminalStream == process.stdout) { | ||
terminalStream = new nodeStreams.Writable({ | ||
write(chunk, _encoding, callback) { | ||
process.stdout.write(chunk, callback); | ||
}, | ||
}) | ||
} | ||
var terminalNode = createNode(terminalStream) | ||
@@ -231,0 +240,0 @@ return createHandle(terminalNode) |
{ | ||
"name": "tree-stream", | ||
"version": "1.0.11", | ||
"version": "1.0.12", | ||
"repository": "git://github.com/wholenews/tree-stream", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17946
380