Skip to content

Commit

Permalink
Increase threshold for showing progress bar to 500k nodes (#9421)
Browse files Browse the repository at this point in the history
  • Loading branch information
thebriando committed Dec 6, 2023
1 parent b530d34 commit 3b798e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/reporters/cli/src/CLIReporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export async function _report(
await writeDiagnostic(options, event.diagnostics, 'red', true);
break;
case 'cache':
if (event.size > 5000) {
if (event.size > 500000) {
switch (event.phase) {
case 'start':
if (!bar) {
Expand Down

0 comments on commit 3b798e0

Please sign in to comment.