Skip to content

Commit 2551fd3

Browse files
committed
cover for accidental breaking change, oops
1 parent b16ec42 commit 2551fd3

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

compare.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ const options = require(path.join(
2323

2424
const BUDGET = options.budget
2525
const BUDGET_PERCENT_INCREASE_RED = options.budgetPercentIncreaseRed
26-
const SHOW_DETAILS = options.showDetails
26+
// this must be explicitly set to false not to render
27+
const SHOW_DETAILS =
28+
options.showDetails === undefined ? true : options.showDetails
2729

2830
// kick it off
2931
let output = `## 📦 Next.js Bundle Analysis

0 commit comments

Comments
 (0)