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"); })();