patch-pulse
Version:
Check for outdated npm dependencies
11 lines • 380 B
JavaScript
import chalk from 'chalk';
/**
* Displays the thank you message
*/
export function displayThankYouMessage() {
console.log();
console.log(chalk.magentaBright.bold('🎉 Thank you for using Patch Pulse CLI!'));
console.log(chalk.cyan.bold('💡 For more info:') +
` ${chalk.white.bold('npx patch-pulse --help')}`);
}
//# sourceMappingURL=thankYouMessage.js.map