File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -192,7 +192,9 @@ export async function runCli({
192192 let projectSpinner : ProgressSpinner | null = null ;
193193
194194 if ( ! jsonOutput && ! bufferAll ) {
195- console . log ( formatProjectHeader ( project . displayName , project . relativePath ) ) ;
195+ console . log (
196+ formatProjectHeader ( project . displayName , project . relativePath ) ,
197+ ) ;
196198 console . log ( ansi . gray ( '─' . repeat ( 60 ) ) ) ;
197199 if ( useProjectSpinner ) {
198200 projectSpinner = new ProgressSpinner ( ) ;
@@ -328,7 +330,9 @@ export async function runCli({
328330 for ( const project of projectReports . filter (
329331 ( p ) => p . projectNeedsAttention ,
330332 ) ) {
331- console . log ( formatProjectHeader ( project . displayName , project . relativePath ) ) ;
333+ console . log (
334+ formatProjectHeader ( project . displayName , project . relativePath ) ,
335+ ) ;
332336 console . log ( ansi . gray ( '─' . repeat ( 60 ) ) ) ;
333337 if ( verboseProjects ) {
334338 for ( const section of project . sectionResults ) {
Original file line number Diff line number Diff line change 1-
2-
3- export default new Map ( [ ] ) ;
4-
1+ export default new Map ( ) ;
You can’t perform that action at this time.
0 commit comments