UNPKG

@owdproject/cli

Version:

The official CLI for Open Web Desktop

11 lines (10 loc) 314 B
import { logTitle } from '../utils/logging' import chalk from 'chalk' export const createCommand = (program) => { program.command('create') .description('Create a new project') .action(() => { logTitle() console.log(chalk.green('✨ Creating new project')) }) }