* 🐛 fix(prepare-commit-msg-hook.ts): remove console.log statement

The console.log statement was left in the code and is not needed. This commit removes it.
This commit is contained in:
di-sukharev
2023-03-06 23:52:34 +08:00
parent 2527c80f2f
commit 3966c4c53a
+2
View File
@@ -37,6 +37,8 @@ export const prepareCommitMessageHook = async () => {
if (typeof commitMessage !== 'string') throw new Error(commitMessage.error);
console.log({ messageFilePath, commitMessage });
await fs.appendFile(messageFilePath, commitMessage);
outro(`${chalk.green('✔')} commit done`);