UNPKG

428 BJavaScriptView Raw
1#!/usr/bin/env node
2"use strict";
3Object.defineProperty(exports, "__esModule", { value: true });
4const yargs = require("yargs");
5const mock_1 = require("./commands/mock");
6const proxy_1 = require("./commands/proxy");
7const _v = yargs
8 .scriptName('prism')
9 .version()
10 .help(true)
11 .strict()
12 .wrap(yargs.terminalWidth())
13 .command(mock_1.default)
14 .command(proxy_1.default)
15 .demandCommand(1, '').argv;