@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/reporter-cli",
3
- "version": "2.15.1-canary.99+30ee2cfcd",
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-canary.99+30ee2cfcd",
30
- "@atlaspack/types": "2.14.5-canary.99+30ee2cfcd",
31
- "@atlaspack/utils": "2.14.5-canary.99+30ee2cfcd",
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-canary.167+30ee2cfcd",
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": "30ee2cfcd34cf2646ded0eda13fdb80a2a5de529"
44
+ "gitHead": "1c70d50f914cb662515b0b61053e51a06f3af234"
45
45
  }
@@ -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
- if (debugTools['simple-cli-reporter']) {
139
- writeOut(
140
- `🛠️ Built ${event.bundleGraph.getBundles().length} bundles.`,
141
- );
142
- } else {
143
- await bundleReport(
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
  }