UNPKG

bananass

Version:

Baekjoon Framework for JavaScript.🍌

33 lines (26 loc) 964 B
/** * @fileoverview CLI `add` command. */ // -------------------------------------------------------------------------------- // Import // -------------------------------------------------------------------------------- import { warning } from 'bananass-utils-console/theme'; // -------------------------------------------------------------------------------- // Typedefs // -------------------------------------------------------------------------------- /** * @import { Command } from 'commander'; */ // -------------------------------------------------------------------------------- // Export // -------------------------------------------------------------------------------- /** * Add: `npx bananass add` command. * @param {Command} program The `commander` package's `program`. */ export default function add(program) { program .command('add') .alias('create') .description(warning('working in progress...🚧', false)); // TODO }