Merge remote-tracking branch 'origin/dev'

This commit is contained in:
di-sukharev
2023-05-04 12:51:35 +08:00
3 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -73,7 +73,7 @@ ${chalk.grey('——————————————————')}`
...extraArgs ...extraArgs
]); ]);
outro(`${chalk.green('✔')} successfully committed`); outro(`${chalk.green('✔')} Successfully committed`);
outro(stdout); outro(stdout);
@@ -102,7 +102,7 @@ ${chalk.grey('——————————————————')}`
]); ]);
pushSpinner.stop( pushSpinner.stop(
`${chalk.green('✔')} successfully pushed all commits to ${remotes[0]}` `${chalk.green('✔')} Successfully pushed all commits to ${remotes[0]}`
); );
if (stdout) outro(stdout); if (stdout) outro(stdout);
@@ -126,7 +126,7 @@ ${chalk.grey('——————————————————')}`
pushSpinner.stop( pushSpinner.stop(
`${chalk.green( `${chalk.green(
'✔' '✔'
)} successfully pushed all commits to ${selectedRemote}` )} Successfully pushed all commits to ${selectedRemote}`
); );
if (stdout) outro(stdout); if (stdout) outro(stdout);
+1 -1
View File
@@ -159,7 +159,7 @@ export const setConfig = (keyValues: [key: string, value: string][]) => {
writeFileSync(configPath, iniStringify(config), 'utf8'); writeFileSync(configPath, iniStringify(config), 'utf8');
outro(`${chalk.green('✔')} config successfully set`); outro(`${chalk.green('✔')} Config successfully set`);
}; };
export const configCommand = command( export const configCommand = command(
+1 -1
View File
@@ -92,7 +92,7 @@ export const hookCommand = command(
} }
throw new Error( throw new Error(
`unsupported mode: ${mode}. Supported modes are: 'set' or 'unset'` `Unsupported mode: ${mode}. Supported modes are: 'set' or 'unset'`
); );
} catch (error) { } catch (error) {
outro(`${chalk.red('✖')} ${error}`); outro(`${chalk.red('✖')} ${error}`);