Added basic login.
This commit is contained in:
11
src/argv.js
Executable file
11
src/argv.js
Executable file
@@ -0,0 +1,11 @@
|
||||
import yargs from 'yargs';
|
||||
|
||||
const { argv } = yargs()
|
||||
.command('npm start')
|
||||
.option('debug', {
|
||||
describe: 'Show error stack traces',
|
||||
type: 'boolean',
|
||||
default: process.env.NODE_ENV === 'development',
|
||||
});
|
||||
|
||||
export default argv;
|
||||
Reference in New Issue
Block a user