Remove some of the whitespace from the progess output

Reviewed By: rafeca

Differential Revision: D6408458

fbshipit-source-id: 2e6c50baedbd53ce4271edc337fada3b628d9c63
This commit is contained in:
Christoph Nakazawa 2017-11-24 11:43:59 -08:00 committed by Facebook Github Bot
parent 95c1eda902
commit 06466e4f6e
1 changed files with 3 additions and 3 deletions

View File

@ -86,7 +86,7 @@ class TerminalReporter {
* Construct a message that represents the progress of a
* single bundle build, for example:
*
* Bunding `foo.js` [ios, dev, minified] |#### | 34.2% (324/945)
* BUNDLE [ios, dev, minified] foo.js 36.6% (4790/7922)
*/
_getBundleStatusMessage(
{
@ -114,9 +114,9 @@ class TerminalReporter {
return (
chalk.inverse.green.bold(' BUNDLE ') +
chalk.dim(` [${platform}${devOrProd}${min}] ${dirName}/`) +
chalk.dim(` [${platform}${devOrProd}${min}] ${dirName}/`) +
chalk.bold(fileName) +
' ' +
' ' +
chalk.green.bgGreen(DARK_BLOCK_CHAR.repeat(filledBar)) +
chalk.bgWhite.white(
LIGHT_BLOCK_CHAR.repeat(MAX_PROGRESS_BAR_CHAR_WIDTH - filledBar),