File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,22 +12,22 @@ export const run = async (username?: string) => {
1212 return process . exit ( 1 ) ;
1313 }
1414
15- const gitHubStatus = await fetchGitHubStats ( username ) ;
15+ const gitHubStats = await fetchGitHubStats ( username ) ;
1616
1717 console . info (
1818 `
1919 ${ blue ( 'Streak' ) }
20- Best ${ yellow ( gitHubStatus . bestStreak ) }
21- Current ${ yellow ( gitHubStatus . currentStreak ) }
22- Previous ${ yellow ( gitHubStatus . previousStreak ) }
20+ Best ${ yellow ( gitHubStats . bestStreak ) }
21+ Current ${ yellow ( gitHubStats . currentStreak ) }
22+ Previous ${ yellow ( gitHubStats . previousStreak ) }
2323` ,
2424 ) ;
2525
2626 console . info (
2727 ` ${ blue ( 'Contributions' ) }
28- Most ${ yellow ( gitHubStatus . mostContributions ) }
29- Today ${ yellow ( gitHubStatus . todaysContributions ) }
30- Total ${ yellow ( gitHubStatus . totalContributions ) } ` ,
28+ Most ${ yellow ( gitHubStats . mostContributions ) }
29+ Today ${ yellow ( gitHubStats . todaysContributions ) }
30+ Total ${ yellow ( gitHubStats . totalContributions ) } ` ,
3131 ) ;
3232
3333 return process . exit ( 0 ) ;
You can’t perform that action at this time.
0 commit comments