File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -60,10 +60,10 @@ const collaborators = readmeText
60
60
} )
61
61
. map ( ( line ) => line . split ( '**' ) [ 1 ] . trim ( ) ) ;
62
62
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.` ) ;
67
67
68
68
const inactive = collaborators . filter ( ( collaborator ) =>
69
69
! authors . includes ( collaborator ) &&
You can’t perform that action at this time.
0 commit comments