UNPKG

bluecodex

Version:

Turn repetitive dev tasks into CLI commands with Typescript

6 lines (4 loc) 225 B
import type { Command } from "../command/command"; import { helpCommand } from "./help/help-command"; import { initCommand } from "./init/init-command"; export const embeddedCommands: Command[] = [initCommand, helpCommand];