Skip to content

Commit

Permalink
Added github issues link
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaKulkarni committed Oct 19, 2023
1 parent 54b64e5 commit 8027296
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions core/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ export const ConsoleMessages = {

return msg.join('\n');
},

gitHubIssuesLink: () => {
const msg = chalk`For feedback/questions/issues, please use {rgb(0,255,255) https://github.com/magiclabs/create-magic-app/issues/new/choose}`;
return msg;
},
};

async function sayHello() {
Expand All @@ -71,6 +76,9 @@ async function sayHello() {
} else {
console.log(chalk`\n {dim v${getMakeMagicVersion()}}\n\n`);
}

console.log(ConsoleMessages.gitHubIssuesLink());
console.log();
}

(async () => {
Expand Down

0 comments on commit 8027296

Please sign in to comment.