deco-cli
Version:
CLI for managing deco.chat apps & projects
21 lines • 934 B
JavaScript
import chalk from "chalk";
/**
* Displays a simple DECO ASCII art banner
*/
export function displayBanner() {
const deco = chalk.green(`
██████╗ ███████╗ ██████╗ ██████╗
██╔══██╗██╔════╝██╔════╝██╔═══██╗
██║ ██║█████╗ ██║ ██║ ██║
██║ ██║██╔══╝ ██║ ██║ ██║
██████╔╝███████╗╚██████╗╚██████╔╝
╚═════╝ ╚══════╝ ╚═════╝ ╚═════╝
`);
const subtitle = chalk.gray("Creating Deco project");
const version = chalk.dim("CLI v0.16.0");
console.log(deco);
console.log(` ${subtitle}`);
console.log(` ${version}`);
console.log("");
}
//# sourceMappingURL=banner.js.map