henchman-cli
Version:
An all-in-one, interactive command-line tool that simplifies creating, setting up, and managing development projects like Flutter and Node.js while automating repetitive tasks.
17 lines (14 loc) • 835 B
JavaScript
import chalk from 'chalk';
export const henchman = `🧌 ${chalk.green('Henchman')}`;
export const greetMessage = `${henchman}: Happy to Help!\n`;
export const byeMessage = `${henchman}: Bye, have a great day.\n`;
export const errorMessage = `\n${henchman}: Unexpected error occurred, below is the error and stacktrace:\n`;
export const logo = chalk.green(
'\n' +
'╭╮╱╭╮╱╱╱╱╱╱╱╱╭╮\n' +
'┃┃╱┃┃╱╱╱╱╱╱╱╱┃┃\n' +
'┃╰━╯┣━━┳━╮╭━━┫╰━┳╮╭┳━━┳━╮\n' +
'┃╭━╮┃┃━┫╭╮┫╭━┫╭╮┃╰╯┃╭╮┃╭╮╮\n' +
'┃┃╱┃┃┃━┫┃┃┃╰━┫┃┃┃┃┃┃╭╮┃┃┃┃\n' +
'╰╯╱╰┻━━┻╯╰┻━━┻╯╰┻┻┻┻╯╰┻╯╰╯\n'
)