@atlaspack/reporter-cli 2.15.1-canary.99 → 2.15.1-dev.1c70d50f9.99
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/CHANGELOG.md +0 -9
- package/lib/CLIReporter.js +2 -4
- package/lib/CLIReporter.js.map +1 -1
- package/package.json +6 -6
- package/src/CLIReporter.js +6 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/reporter-cli",
|
|
3
|
-
"version": "2.15.1-
|
|
3
|
+
"version": "2.15.1-dev.1c70d50f9.99+1c70d50f9",
|
|
4
4
|
"license": "(MIT OR Apache-2.0)",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@atlaspack/plugin": "2.14.5-
|
|
30
|
-
"@atlaspack/types": "2.14.5-
|
|
31
|
-
"@atlaspack/utils": "2.14.5-
|
|
29
|
+
"@atlaspack/plugin": "2.14.5-dev.1c70d50f9.99+1c70d50f9",
|
|
30
|
+
"@atlaspack/types": "2.14.5-dev.1c70d50f9.99+1c70d50f9",
|
|
31
|
+
"@atlaspack/utils": "2.14.5-dev.1c70d50f9.99+1c70d50f9",
|
|
32
32
|
"chalk": "^4.1.0",
|
|
33
33
|
"term-size": "^2.2.1"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@atlaspack/feature-flags": "2.14.1-
|
|
36
|
+
"@atlaspack/feature-flags": "2.14.1-dev.1c70d50f9.167+1c70d50f9",
|
|
37
37
|
"filesize": "^6.1.0",
|
|
38
38
|
"nullthrows": "^1.1.1",
|
|
39
39
|
"ora": "^5.2.0",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"wrap-ansi": "^7.0.0"
|
|
42
42
|
},
|
|
43
43
|
"type": "commonjs",
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "1c70d50f914cb662515b0b61053e51a06f3af234"
|
|
45
45
|
}
|
package/src/CLIReporter.js
CHANGED
|
@@ -9,7 +9,6 @@ import {
|
|
|
9
9
|
prettifyTime,
|
|
10
10
|
prettyDiagnostic,
|
|
11
11
|
throttle,
|
|
12
|
-
debugTools,
|
|
13
12
|
} from '@atlaspack/utils';
|
|
14
13
|
import chalk from 'chalk';
|
|
15
14
|
|
|
@@ -135,18 +134,12 @@ export async function _report(
|
|
|
135
134
|
);
|
|
136
135
|
|
|
137
136
|
if (options.mode === 'production') {
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
event.bundleGraph,
|
|
145
|
-
options.outputFS,
|
|
146
|
-
options.projectRoot,
|
|
147
|
-
options.detailedReport?.assetsPerBundle,
|
|
148
|
-
);
|
|
149
|
-
}
|
|
137
|
+
await bundleReport(
|
|
138
|
+
event.bundleGraph,
|
|
139
|
+
options.outputFS,
|
|
140
|
+
options.projectRoot,
|
|
141
|
+
options.detailedReport?.assetsPerBundle,
|
|
142
|
+
);
|
|
150
143
|
} else {
|
|
151
144
|
pendingIncrementalBuild = true;
|
|
152
145
|
}
|