File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -60,10 +60,10 @@ const collaborators = readmeText
6060 } )
6161 . map ( ( line ) => line . split ( '**' ) [ 1 ] . trim ( ) ) ;
6262
63- console . log ( `${ authors . length } authors have made commits since ${ SINCE } .` ) ;
64- console . log ( `${ landers . length } landers have landed commits since ${ SINCE } .` ) ;
65- console . log ( `${ approvingReviewers . length } reviewers have approved landed commits since ${ SINCE } .` ) ;
66- console . log ( `${ collaborators . length } collaborators currently in the project.` ) ;
63+ console . log ( `${ authors . length . toLocaleString ( ) } authors have made commits since ${ SINCE } .` ) ;
64+ console . log ( `${ landers . length . toLocaleString ( ) } landers have landed commits since ${ SINCE } .` ) ;
65+ console . log ( `${ approvingReviewers . length . toLocaleString ( ) } reviewers have approved landed commits since ${ SINCE } .` ) ;
66+ console . log ( `${ collaborators . length . toLocaleString ( ) } collaborators currently in the project.` ) ;
6767
6868const inactive = collaborators . filter ( ( collaborator ) =>
6969 ! authors . includes ( collaborator ) &&
You can’t perform that action at this time.
0 commit comments