@lerna/child-process
Advanced tools
Comparing version 3.0.0-beta.11 to 3.0.0-beta.12
@@ -6,2 +6,14 @@ # Change Log | ||
<a name="3.0.0-beta.12"></a> | ||
# [3.0.0-beta.12](https://github.com/lerna/lerna/compare/v3.0.0-beta.11...v3.0.0-beta.12) (2018-03-30) | ||
### Features | ||
* Add --no-prefix for streaming output ([#1352](https://github.com/lerna/lerna/issues/1352)) ([36c1fad](https://github.com/lerna/lerna/commit/36c1fad)) | ||
<a name="3.0.0-beta.11"></a> | ||
@@ -8,0 +20,0 @@ # [3.0.0-beta.11](https://github.com/lerna/lerna/compare/v3.0.0-beta.10...v3.0.0-beta.11) (2018-03-29) |
@@ -40,5 +40,8 @@ "use strict"; | ||
const prefixedStdout = logTransformer({ tag: `${color.bold(prefix)}:` }); | ||
const prefixedStderr = logTransformer({ tag: `${color(prefix)}:`, mergeMultiline: true }); | ||
const stdoutTag = prefix ? `${color.bold(prefix)}:` : ""; | ||
const stderrTag = prefix ? `${color(prefix)}:` : ""; | ||
const prefixedStdout = logTransformer({ tag: stdoutTag }); | ||
const prefixedStderr = logTransformer({ tag: stderrTag, mergeMultiline: true }); | ||
// Avoid "Possible EventEmitter memory leak detected" warning due to piped stdio | ||
@@ -45,0 +48,0 @@ if (children > process.stdout.listenerCount("close")) { |
{ | ||
"name": "@lerna/child-process", | ||
"version": "3.0.0-beta.11", | ||
"version": "3.0.0-beta.12", | ||
"description": "TODO", | ||
@@ -37,3 +37,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "197a09d58322e86f589ef7839c2438f830d72476" | ||
"gitHead": "05dce5c0e4bca8dc894a99ed28337c85c211b37c" | ||
} |
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
3935
64