@atlaspack/reporter-cli 2.13.2-canary.3657 → 2.13.2-canary.3659
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/CLIReporter.js +6 -0
- package/lib/CLIReporter.js.map +1 -1
- package/package.json +7 -7
- package/src/render.js +7 -0
package/lib/CLIReporter.js
CHANGED
|
@@ -7279,6 +7279,12 @@ const $35c5c9dbf10fc514$export$e0d6e0edafcff892 = // $FlowFixMe
|
|
|
7279
7279
|
process.env.NODE_ENV !== 'test' && process.stdout.isTTY;
|
|
7280
7280
|
let $35c5c9dbf10fc514$var$stdout = process.stdout;
|
|
7281
7281
|
let $35c5c9dbf10fc514$var$stderr = process.stderr;
|
|
7282
|
+
// We pipe worker output to the process. If you
|
|
7283
|
+
// have more than 10 threads then Nodejs will
|
|
7284
|
+
// print warnings indicating you exceed the max
|
|
7285
|
+
// listener count.
|
|
7286
|
+
$35c5c9dbf10fc514$var$stdout.setMaxListeners(100);
|
|
7287
|
+
$35c5c9dbf10fc514$var$stderr.setMaxListeners(100);
|
|
7282
7288
|
// Some state so we clear the output properly
|
|
7283
7289
|
let $35c5c9dbf10fc514$var$lineCount = 0;
|
|
7284
7290
|
let $35c5c9dbf10fc514$var$errorLineCount = 0;
|