From 4e16104d627ed5fe4f73715d52a0c02d10a67000 Mon Sep 17 00:00:00 2001 From: Olivers Vitins Date: Sat, 19 Aug 2023 20:46:35 +0300 Subject: [PATCH] refactor: change intro and outro messages --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 1ae3bb7..e528b9c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -30,7 +30,7 @@ const GetConfig = async () => { (async () => { const config = await GetConfig(); - intro("Creating a conventional commit message"); + intro("Creating a conventional commit"); if (!fs.existsSync(path.join(process.cwd(), ".git"))) { cancel("Git repository has not been initialized"); @@ -174,5 +174,5 @@ const GetConfig = async () => { note(commitMessage); - outro("Finished creating a conventional commit message"); + outro("Finished creating a conventional commit, feel free to push"); })();