File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -92,13 +92,13 @@ export const getFiles = (): Map<string, Buffer> => {
9292
9393 // Report excluded files
9494 if ( excludedFiles . length > 0 ) {
95- console . log ( cyanLog ( `\n Excluded ${ excludedFiles . length } file(s):`) ) ;
95+ console . log ( `\nExcluded ${ excludedFiles . length } file(s):`) ;
9696 // Show first 10 excluded files, then summarize if more
9797 const displayLimit = 10 ;
98- for ( const file of excludedFiles . slice ( 0 , displayLimit ) ) console . log ( cyanLog ( ` - ${ file } ` ) ) ;
98+ for ( const file of excludedFiles . slice ( 0 , displayLimit ) ) console . log ( cyanLog ( `- ${ file } ` ) ) ;
9999
100100 if ( excludedFiles . length > displayLimit )
101- console . log ( cyanLog ( ` ... and ${ excludedFiles . length - displayLimit } more` ) ) ;
101+ console . log ( cyanLog ( `... and ${ excludedFiles . length - displayLimit } more` ) ) ;
102102
103103 console . log ( ) ; // Blank line for readability
104104 }
You can’t perform that action at this time.
0 commit comments