1 | "use strict";
|
2 |
|
3 | Object.defineProperty(exports, "__esModule", {
|
4 | value: true
|
5 | });
|
6 | exports.default = void 0;
|
7 |
|
8 | var _command = require("../command");
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 | class InstallSlim extends _command.Command {
|
16 | |
17 |
|
18 |
|
19 |
|
20 |
|
21 | |
22 |
|
23 |
|
24 |
|
25 |
|
26 | |
27 |
|
28 |
|
29 |
|
30 |
|
31 | |
32 |
|
33 |
|
34 |
|
35 |
|
36 | |
37 |
|
38 |
|
39 |
|
40 |
|
41 | |
42 |
|
43 |
|
44 | async run() {
|
45 | const {
|
46 | argv
|
47 | } = this.parse(InstallSlim);
|
48 | await this._commandInstall(argv, 'slim');
|
49 | }
|
50 |
|
51 | }
|
52 |
|
53 | exports.default = InstallSlim;
|
54 | InstallSlim.description = 'install packages, slim method';
|
55 | InstallSlim.examples = [];
|
56 | InstallSlim.flags = {
|
57 | help: _command.flags.help({
|
58 | char: 'h'
|
59 | })
|
60 | };
|
61 | InstallSlim.args = [{
|
62 | name: 'packages',
|
63 | required: true,
|
64 | description: 'list of packages to be installed'
|
65 | }];
|
66 | InstallSlim.strict = false;
|
67 |
|