mirror of https://github.com/status-im/metro.git
Remove some of the whitespace from the progess output
Reviewed By: rafeca Differential Revision: D6408458 fbshipit-source-id: 2e6c50baedbd53ce4271edc337fada3b628d9c63
This commit is contained in:
parent
95c1eda902
commit
06466e4f6e
|
@ -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),
|
||||
|
|
Loading…
Reference in New Issue