Lines Matching refs:chalk
2 import chalk from 'chalk';
73 `\nLooking for commits to cherry-pick from ${chalk.bold(chalk.blue(source))} to ${chalk.bold(
74 chalk.blue(destination)
130 logger.log(chalk.bold(chalk.red('Ignoring the following commits from before the start date:')));
135 ` ❌ ${chalk.red(commit.hash.slice(0, 10))} ${commit.authorDate} ${chalk.magenta(
153 message: `Choose which commits to cherry-pick from ${chalk.blue(source)} to ${chalk.blue(
155 )}\n ${chalk.green('●')} selected ○ unselected\n`,
159 name: `${chalk.yellow(commit.hash.slice(0, 10))} ${commit.authorDate} ${chalk.magenta(
172 logger.log(chalk.bold(chalk.yellow(`git checkout ${destination}`)));
174 logger.info(`Checking out ${chalk.bold(chalk.blue(destination))} branch...`);
185 logger.log(chalk.bold(chalk.yellow(`git cherry-pick ${commitHashes.join(' ')}`)));
187 logger.info(`Running ${chalk.yellow(`git cherry-pick ${commitHashes.join(' ')}`)}`);