File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -540,12 +540,11 @@ export function composePrintFileSizeConfig(
540540 totalSize,
541541 totalGzipSize,
542542 } ) => {
543- let log = `${ color . yellow ( assets . length ) } files generated in ${ color . blue ( distPath ) } ${ color . dim ( `(${ environmentName } )` ) } ` ;
544- log += '\n' ;
545- log += `${ color . magenta ( 'Total size:' ) } ${ ( totalSize / 1000 ) . toFixed ( 1 ) } kB` ;
543+ let log = `${ color . yellow ( assets . length ) } files generated in ${ color . cyan ( distPath ) } , ${ color . magenta ( 'total:' ) } ${ ( totalSize / 1000 ) . toFixed ( 1 ) } kB` ;
546544 if ( target === 'web' ) {
547545 log += ` ${ color . green ( `(${ ( totalGzipSize / 1000 ) . toFixed ( 1 ) } kB gzipped)` ) } ` ;
548546 }
547+ log += ` ${ color . dim ( `(${ environmentName } )` ) } ` ;
549548 return log ;
550549 } ,
551550 detail : false ,
You can’t perform that action at this time.
0 commit comments