* 🐛 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:
@@ -37,6 +37,8 @@ export const prepareCommitMessageHook = async () => {
|
|||||||
|
|
||||||
if (typeof commitMessage !== 'string') throw new Error(commitMessage.error);
|
if (typeof commitMessage !== 'string') throw new Error(commitMessage.error);
|
||||||
|
|
||||||
|
console.log({ messageFilePath, commitMessage });
|
||||||
|
|
||||||
await fs.appendFile(messageFilePath, commitMessage);
|
await fs.appendFile(messageFilePath, commitMessage);
|
||||||
|
|
||||||
outro(`${chalk.green('✔')} commit done`);
|
outro(`${chalk.green('✔')} commit done`);
|
||||||
|
|||||||
Reference in New Issue
Block a user