UNPKG

matterhorn-cli

Version:

CLI to accompany Matterhorn boilerplate project

21 lines (18 loc) 334 B
#!/usr/bin/env node import chalk from 'chalk' import * as figlet from 'figlet' const init = () => { console.log( chalk.green( figlet.textSync('Matterhorn CLI', { font: 'Slant', horizontalLayout: 'default', verticalLayout: 'default' }) ) ) } const run = async () => { init() } run()