docs(README.md): update description text for better readability

style(git.ts): add line breaks for better code readability
This commit is contained in:
di-sukharev
2024-03-18 15:21:38 +08:00
parent f0251d14bb
commit bdc98c6fa8
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -75,8 +75,11 @@ export const getChangedFiles = async (): Promise<string[]> => {
export const gitAdd = async ({ files }: { files: string[] }) => {
const gitAddSpinner = spinner();
gitAddSpinner.start('Adding files to commit');
await execa('git', ['add', ...files]);
gitAddSpinner.stop('Done');
};