UNPKG

@boat/cli

Version:

A simple CLI to start your Boat projects

9 lines (8 loc) 223 B
import * as shell from 'shelljs'; import * as program from 'commander'; import * as chalk from 'chalk'; import * as typescript from 'typescript'; export function serve() { shell.exec('tsc'); shell.exec('node .'); }