UNPKG

290 BJavaScriptView Raw
1//-------------------------------------
2//-- CLI
3//-------------------------------------
4'use strict';
5
6module.exports = ({ root }) => {
7 process.title = 'nwayo';
8
9 const cli = require(`${__dirname}/tasks`); // eslint-disable-line global-require
10
11 cli.argv(process.argv.slice(2), root);
12};