UNPKG

681 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const help_1 = require("./help");
4exports.internalOptions = [
5 {
6 name: 'help',
7 flag: 'h',
8 description: 'Display help',
9 commandHandler: parsed => {
10 // tslint:disable-next-line: no-console
11 console.log(help_1.helpFormatter(parsed));
12 },
13 },
14 {
15 name: 'version',
16 flag: '-v',
17 description: 'Display version',
18 commandHandler: parsed => {
19 // tslint:disable-next-line: no-console
20 console.log(`Version ${parsed.version}`);
21 },
22 },
23];
24//# sourceMappingURL=internalOptions.js.map
\No newline at end of file