From f07dd45b75caa7338a48e6174bb22972890dac60 Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Sat, 10 Feb 2018 13:36:50 +0000 Subject: [PATCH] Fix build stats display --- scripts/rollup/stats.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/rollup/stats.js b/scripts/rollup/stats.js index 7cf78dbc69..b12ab810e9 100644 --- a/scripts/rollup/stats.js +++ b/scripts/rollup/stats.js @@ -78,7 +78,7 @@ function generateResultsArray(current, prevResults) { function printResults() { const table = new Table({ - head: resultsHeaders.map(chalk.gray.yellow), + head: resultsHeaders.map(label => chalk.gray.yellow(label)), }); const results = generateResultsArray(currentBuildResults, prevBuildResults);