@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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/reporter-cli",
|
|
3
|
-
"version": "2.13.2-canary.
|
|
3
|
+
"version": "2.13.2-canary.3659+f635123f9",
|
|
4
4
|
"license": "(MIT OR Apache-2.0)",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"main": "lib/CLIReporter.js",
|
|
13
13
|
"source": "src/CLIReporter.js",
|
|
14
14
|
"engines": {
|
|
15
|
-
"atlaspack": "2.13.2-canary.
|
|
15
|
+
"atlaspack": "2.13.2-canary.3659+f635123f9",
|
|
16
16
|
"node": ">= 16.0.0"
|
|
17
17
|
},
|
|
18
18
|
"targets": {
|
|
@@ -27,19 +27,19 @@
|
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@atlaspack/plugin": "2.13.2-canary.
|
|
31
|
-
"@atlaspack/types": "2.13.2-canary.
|
|
32
|
-
"@atlaspack/utils": "2.13.2-canary.
|
|
30
|
+
"@atlaspack/plugin": "2.13.2-canary.3659+f635123f9",
|
|
31
|
+
"@atlaspack/types": "2.13.2-canary.3659+f635123f9",
|
|
32
|
+
"@atlaspack/utils": "2.13.2-canary.3659+f635123f9",
|
|
33
33
|
"chalk": "^4.1.0",
|
|
34
34
|
"term-size": "^2.2.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@atlaspack/feature-flags": "2.13.2-canary.
|
|
37
|
+
"@atlaspack/feature-flags": "2.13.2-canary.3659+f635123f9",
|
|
38
38
|
"filesize": "^6.1.0",
|
|
39
39
|
"nullthrows": "^1.1.1",
|
|
40
40
|
"ora": "^5.2.0",
|
|
41
41
|
"string-width": "^4.2.0",
|
|
42
42
|
"wrap-ansi": "^7.0.0"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "f635123f9a06961bc5e053e237f1023f10800ea3"
|
|
45
45
|
}
|
package/src/render.js
CHANGED
|
@@ -20,6 +20,13 @@ export const isTTY: any | boolean | true =
|
|
|
20
20
|
let stdout = process.stdout;
|
|
21
21
|
let stderr = process.stderr;
|
|
22
22
|
|
|
23
|
+
// We pipe worker output to the process. If you
|
|
24
|
+
// have more than 10 threads then Nodejs will
|
|
25
|
+
// print warnings indicating you exceed the max
|
|
26
|
+
// listener count.
|
|
27
|
+
stdout.setMaxListeners(100);
|
|
28
|
+
stderr.setMaxListeners(100);
|
|
29
|
+
|
|
23
30
|
// Some state so we clear the output properly
|
|
24
31
|
let lineCount = 0;
|
|
25
32
|
let errorLineCount = 0;
|