Skip to content

Commit

Permalink
little tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
BalliAsghar committed Jan 2, 2023
1 parent 7a05e04 commit 0d6de78
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ import chalk from "chalk";

const program = new Command();

program.name("Mailsy").description("⚡️ Quickly generate a disposable email straight from terminal.");
program
.name("Mailsy")
.description(
"⚡️ Quickly generate a disposable email straight from terminal."
);
// Generate a new email
program
.command("g")
Expand All @@ -32,7 +36,7 @@ program
choices: emails.map((email, index) => ({
name: `${index + 1}. ${chalk.underline.blue(
email.subject
)} - from: ${email.from.address}`,
)} - ${chalk.yellow("From:")} ${email.from.address}`,
value: index + 1,
})),
},
Expand Down

0 comments on commit 0d6de78

Please sign in to comment.