Skip to content

Commit 2670535

Browse files
committed
chore: change number color
1 parent bccde18 commit 2670535

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hacker-feeds-cli",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"description": "A command line tool for hacker news & product hunt feeds.",
55
"main": "index.js",
66
"bin": {

utils/fetchReddit.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ async function fetchReddit(sort = 'hot', topic = 'popular') {
1414
spinner.stop();
1515
console.log(
1616
chalk.cyan(`-----------------------------------------
17-
🤖️ ${t('reddit.title')}
17+
🧬 ${t('reddit.title')}
1818
-----------------------------------------
1919
`),
2020
);
@@ -25,12 +25,12 @@ async function fetchReddit(sort = 'hot', topic = 'popular') {
2525
console.log(t('reddit.postName'), ': ', chalk.green(title));
2626
console.log(
2727
`${t('reddit.comment')}: `,
28-
chalk.cyan(num_comments),
28+
chalk.yellow(num_comments),
2929
' | ',
3030
`${t('reddit.votes')}: `,
31-
chalk.cyan(ups),
31+
chalk.yellow(ups),
3232
` | ${t('reddit.topic')}: `,
33-
chalk.cyan(subreddit),
33+
chalk.yellow(subreddit),
3434
);
3535
console.log(t('reddit.url'), ': ', chalk.dim(`${RedditBaseUrl}${permalink}`));
3636
if (selftext !== '') {

0 commit comments

Comments
 (0)