UNPKG

542 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const yargs = require("yargs");
4const build = require("./build.yargs");
5const develop = require("./develop.yargs");
6const start = require("./start.yargs");
7const create = require("./create.yargs");
8yargs
9 .command('build', 'Build the app', build)
10 .command('develop', 'Develop the app schema', develop)
11 .command('start', 'Start the app schema', start)
12 .command('create <name>', 'Create a sample app', create)
13 .argv;
14//# sourceMappingURL=cli.js.map
\No newline at end of file