shack/src/cli.js

13 lines
257 B
JavaScript
Executable File

// import config from 'config';
import yargs from 'yargs';
import { hideBin } from 'yargs/helpers';
const { argv } = yargs(hideBin(process.argv))
.command('npm start')
.option('log-level', {
alias: 'level',
type: 'string',
});
export default argv;