import { Command } from 'commander' import compileCommand from './compile' const program = new Command() compileCommand(program) program.parse()