diff --git a/src/index.ts b/src/index.ts index 7f14120..1ae3bb7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,6 +5,7 @@ import { confirm, intro, isCancel, + note, outro, select, text, @@ -29,7 +30,7 @@ const GetConfig = async () => { (async () => { const config = await GetConfig(); - intro(`Creating a conventional commit message`); + intro("Creating a conventional commit message"); if (!fs.existsSync(path.join(process.cwd(), ".git"))) { cancel("Git repository has not been initialized"); @@ -171,5 +172,7 @@ const GetConfig = async () => { await simpleGit().commit(commitMessage); } - outro(`"${commitMessage}" - ready to push`); + note(commitMessage); + + outro("Finished creating a conventional commit message"); })();