@chabokan.net/cli 0.8.7 → 0.8.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +215 -126
- package/bin/dev.cmd +1 -1
- package/bin/dev.js +6 -0
- package/bin/run.js +5 -0
- package/oclif.manifest.json +2 -432
- package/package.json +39 -38
- package/LICENSE +0 -21
- package/bin/dev +0 -17
- package/bin/run +0 -5
- package/lib/base.d.ts +0 -15
- package/lib/base.js +0 -64
- package/lib/commands/account/list.d.ts +0 -8
- package/lib/commands/account/list.js +0 -29
- package/lib/commands/account/remove.d.ts +0 -8
- package/lib/commands/account/remove.js +0 -35
- package/lib/commands/account/use.d.ts +0 -9
- package/lib/commands/account/use.js +0 -42
- package/lib/commands/deploy.d.ts +0 -15
- package/lib/commands/deploy.js +0 -174
- package/lib/commands/login.d.ts +0 -11
- package/lib/commands/login.js +0 -92
- package/lib/commands/service/list.d.ts +0 -8
- package/lib/commands/service/list.js +0 -33
- package/lib/commands/service/logs.d.ts +0 -10
- package/lib/commands/service/logs.js +0 -60
- package/lib/commands/service/resize.d.ts +0 -13
- package/lib/commands/service/resize.js +0 -131
- package/lib/commands/service/restart.d.ts +0 -10
- package/lib/commands/service/restart.js +0 -58
- package/lib/commands/service/start.d.ts +0 -10
- package/lib/commands/service/start.js +0 -56
- package/lib/commands/service/stop.d.ts +0 -10
- package/lib/commands/service/stop.js +0 -56
- package/lib/constants.d.ts +0 -2
- package/lib/constants.js +0 -7
- package/lib/helper.d.ts +0 -12
- package/lib/helper.js +0 -113
- package/lib/index.d.ts +0 -1
- package/lib/index.js +0 -1
package/README.md
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
chabok
|
|
1
|
+
chabok
|
|
2
2
|
=================
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
A new CLI generated with oclif
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
[](https://oclif.io)
|
|
8
|
+
[](https://npmjs.org/package/chabok)
|
|
9
|
+
[](https://npmjs.org/package/chabok)
|
|
5
10
|
|
|
6
|
-
[](https://npmjs.com/package/@chabokan.net/cli)
|
|
7
|
-
[](https://npmjs.org/package/@chabokan.net/cli)
|
|
8
|
-
[](https://github.com/chabokan/cli/blob/master/package.json)
|
|
9
11
|
|
|
10
12
|
<!-- toc -->
|
|
11
13
|
* [Usage](#usage)
|
|
@@ -18,7 +20,7 @@ $ npm install -g @chabokan.net/cli
|
|
|
18
20
|
$ chabok COMMAND
|
|
19
21
|
running command...
|
|
20
22
|
$ chabok (--version|-v)
|
|
21
|
-
@chabokan.net/cli/0.8.
|
|
23
|
+
@chabokan.net/cli/0.8.8 darwin-arm64 node-v20.13.1
|
|
22
24
|
$ chabok --help [COMMAND]
|
|
23
25
|
USAGE
|
|
24
26
|
$ chabok COMMAND
|
|
@@ -27,272 +29,359 @@ USAGE
|
|
|
27
29
|
<!-- usagestop -->
|
|
28
30
|
# Commands
|
|
29
31
|
<!-- commands -->
|
|
30
|
-
* [`chabok account list`](#chabok-account-list)
|
|
31
|
-
* [`chabok account remove`](#chabok-account-remove)
|
|
32
|
-
* [`chabok account use`](#chabok-account-use)
|
|
33
32
|
* [`chabok autocomplete [SHELL]`](#chabok-autocomplete-shell)
|
|
34
|
-
* [`chabok deploy`](#chabok-deploy)
|
|
35
33
|
* [`chabok help [COMMAND]`](#chabok-help-command)
|
|
36
|
-
* [`chabok
|
|
37
|
-
* [`chabok
|
|
38
|
-
* [`chabok
|
|
39
|
-
* [`chabok
|
|
40
|
-
* [`chabok
|
|
41
|
-
* [`chabok
|
|
42
|
-
* [`chabok
|
|
34
|
+
* [`chabok plugins`](#chabok-plugins)
|
|
35
|
+
* [`chabok plugins add PLUGIN`](#chabok-plugins-add-plugin)
|
|
36
|
+
* [`chabok plugins:inspect PLUGIN...`](#chabok-pluginsinspect-plugin)
|
|
37
|
+
* [`chabok plugins install PLUGIN`](#chabok-plugins-install-plugin)
|
|
38
|
+
* [`chabok plugins link PATH`](#chabok-plugins-link-path)
|
|
39
|
+
* [`chabok plugins remove [PLUGIN]`](#chabok-plugins-remove-plugin)
|
|
40
|
+
* [`chabok plugins reset`](#chabok-plugins-reset)
|
|
41
|
+
* [`chabok plugins uninstall [PLUGIN]`](#chabok-plugins-uninstall-plugin)
|
|
42
|
+
* [`chabok plugins unlink [PLUGIN]`](#chabok-plugins-unlink-plugin)
|
|
43
|
+
* [`chabok plugins update`](#chabok-plugins-update)
|
|
43
44
|
* [`chabok version`](#chabok-version)
|
|
44
45
|
|
|
45
|
-
## `chabok
|
|
46
|
+
## `chabok autocomplete [SHELL]`
|
|
46
47
|
|
|
47
|
-
|
|
48
|
+
Display autocomplete installation instructions.
|
|
48
49
|
|
|
49
50
|
```
|
|
50
51
|
USAGE
|
|
51
|
-
$ chabok
|
|
52
|
+
$ chabok autocomplete [SHELL] [-r]
|
|
53
|
+
|
|
54
|
+
ARGUMENTS
|
|
55
|
+
SHELL (zsh|bash|powershell) Shell type
|
|
52
56
|
|
|
53
57
|
FLAGS
|
|
54
|
-
-
|
|
58
|
+
-r, --refresh-cache Refresh cache (ignores displaying instructions)
|
|
55
59
|
|
|
56
60
|
DESCRIPTION
|
|
57
|
-
|
|
61
|
+
Display autocomplete installation instructions.
|
|
62
|
+
|
|
63
|
+
EXAMPLES
|
|
64
|
+
$ chabok autocomplete
|
|
65
|
+
|
|
66
|
+
$ chabok autocomplete bash
|
|
67
|
+
|
|
68
|
+
$ chabok autocomplete zsh
|
|
69
|
+
|
|
70
|
+
$ chabok autocomplete powershell
|
|
71
|
+
|
|
72
|
+
$ chabok autocomplete --refresh-cache
|
|
58
73
|
```
|
|
59
74
|
|
|
60
|
-
_See code: [
|
|
75
|
+
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.0.18/src/commands/autocomplete/index.ts)_
|
|
61
76
|
|
|
62
|
-
## `chabok
|
|
77
|
+
## `chabok help [COMMAND]`
|
|
63
78
|
|
|
64
|
-
|
|
79
|
+
Display help for chabok.
|
|
65
80
|
|
|
66
81
|
```
|
|
67
82
|
USAGE
|
|
68
|
-
$ chabok
|
|
83
|
+
$ chabok help [COMMAND...] [-n]
|
|
84
|
+
|
|
85
|
+
ARGUMENTS
|
|
86
|
+
COMMAND... Command to show help for.
|
|
69
87
|
|
|
70
88
|
FLAGS
|
|
71
|
-
-
|
|
89
|
+
-n, --nested-commands Include all nested commands in the output.
|
|
72
90
|
|
|
73
91
|
DESCRIPTION
|
|
74
|
-
|
|
92
|
+
Display help for chabok.
|
|
75
93
|
```
|
|
76
94
|
|
|
77
|
-
_See code: [
|
|
95
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.0.22/src/commands/help.ts)_
|
|
78
96
|
|
|
79
|
-
## `chabok
|
|
97
|
+
## `chabok plugins`
|
|
80
98
|
|
|
81
|
-
|
|
99
|
+
List installed plugins.
|
|
82
100
|
|
|
83
101
|
```
|
|
84
102
|
USAGE
|
|
85
|
-
$ chabok
|
|
103
|
+
$ chabok plugins [--json] [--core]
|
|
86
104
|
|
|
87
105
|
FLAGS
|
|
88
|
-
|
|
89
|
-
|
|
106
|
+
--core Show core plugins.
|
|
107
|
+
|
|
108
|
+
GLOBAL FLAGS
|
|
109
|
+
--json Format output as json.
|
|
90
110
|
|
|
91
111
|
DESCRIPTION
|
|
92
|
-
|
|
112
|
+
List installed plugins.
|
|
113
|
+
|
|
114
|
+
EXAMPLES
|
|
115
|
+
$ chabok plugins
|
|
93
116
|
```
|
|
94
117
|
|
|
95
|
-
_See code: [
|
|
118
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.3/src/commands/plugins/index.ts)_
|
|
96
119
|
|
|
97
|
-
## `chabok
|
|
120
|
+
## `chabok plugins add PLUGIN`
|
|
98
121
|
|
|
99
|
-
|
|
122
|
+
Installs a plugin into chabok.
|
|
100
123
|
|
|
101
124
|
```
|
|
102
125
|
USAGE
|
|
103
|
-
$ chabok
|
|
126
|
+
$ chabok plugins add PLUGIN... [--json] [-f] [-h] [-s | -v]
|
|
104
127
|
|
|
105
128
|
ARGUMENTS
|
|
106
|
-
|
|
129
|
+
PLUGIN... Plugin to install.
|
|
107
130
|
|
|
108
131
|
FLAGS
|
|
109
|
-
-
|
|
132
|
+
-f, --force Force npm to fetch remote resources even if a local copy exists on disk.
|
|
133
|
+
-h, --help Show CLI help.
|
|
134
|
+
-s, --silent Silences npm output.
|
|
135
|
+
-v, --verbose Show verbose npm output.
|
|
136
|
+
|
|
137
|
+
GLOBAL FLAGS
|
|
138
|
+
--json Format output as json.
|
|
110
139
|
|
|
111
140
|
DESCRIPTION
|
|
112
|
-
|
|
141
|
+
Installs a plugin into chabok.
|
|
142
|
+
|
|
143
|
+
Uses bundled npm executable to install plugins into /Users/mohammad/.local/share/@chabokan.net/cli
|
|
144
|
+
|
|
145
|
+
Installation of a user-installed plugin will override a core plugin.
|
|
146
|
+
|
|
147
|
+
Use the CHABOK_NPM_LOG_LEVEL environment variable to set the npm loglevel.
|
|
148
|
+
Use the CHABOK_NPM_REGISTRY environment variable to set the npm registry.
|
|
149
|
+
|
|
150
|
+
ALIASES
|
|
151
|
+
$ chabok plugins add
|
|
113
152
|
|
|
114
153
|
EXAMPLES
|
|
115
|
-
|
|
154
|
+
Install a plugin from npm registry.
|
|
116
155
|
|
|
117
|
-
|
|
156
|
+
$ chabok plugins add myplugin
|
|
118
157
|
|
|
119
|
-
|
|
158
|
+
Install a plugin from a github url.
|
|
120
159
|
|
|
121
|
-
|
|
160
|
+
$ chabok plugins add https://github.com/someuser/someplugin
|
|
122
161
|
|
|
123
|
-
|
|
124
|
-
```
|
|
162
|
+
Install a plugin from a github slug.
|
|
125
163
|
|
|
126
|
-
|
|
164
|
+
$ chabok plugins add someuser/someplugin
|
|
165
|
+
```
|
|
127
166
|
|
|
128
|
-
## `chabok
|
|
167
|
+
## `chabok plugins:inspect PLUGIN...`
|
|
129
168
|
|
|
130
|
-
|
|
169
|
+
Displays installation properties of a plugin.
|
|
131
170
|
|
|
132
171
|
```
|
|
133
172
|
USAGE
|
|
134
|
-
$ chabok
|
|
173
|
+
$ chabok plugins inspect PLUGIN...
|
|
174
|
+
|
|
175
|
+
ARGUMENTS
|
|
176
|
+
PLUGIN... [default: .] Plugin to inspect.
|
|
135
177
|
|
|
136
178
|
FLAGS
|
|
137
|
-
-h, --help
|
|
138
|
-
-
|
|
139
|
-
|
|
179
|
+
-h, --help Show CLI help.
|
|
180
|
+
-v, --verbose
|
|
181
|
+
|
|
182
|
+
GLOBAL FLAGS
|
|
183
|
+
--json Format output as json.
|
|
140
184
|
|
|
141
185
|
DESCRIPTION
|
|
142
|
-
|
|
186
|
+
Displays installation properties of a plugin.
|
|
187
|
+
|
|
188
|
+
EXAMPLES
|
|
189
|
+
$ chabok plugins inspect myplugin
|
|
143
190
|
```
|
|
144
191
|
|
|
145
|
-
_See code: [
|
|
192
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.3/src/commands/plugins/inspect.ts)_
|
|
146
193
|
|
|
147
|
-
## `chabok
|
|
194
|
+
## `chabok plugins install PLUGIN`
|
|
148
195
|
|
|
149
|
-
|
|
196
|
+
Installs a plugin into chabok.
|
|
150
197
|
|
|
151
198
|
```
|
|
152
199
|
USAGE
|
|
153
|
-
$ chabok
|
|
200
|
+
$ chabok plugins install PLUGIN... [--json] [-f] [-h] [-s | -v]
|
|
154
201
|
|
|
155
202
|
ARGUMENTS
|
|
156
|
-
|
|
203
|
+
PLUGIN... Plugin to install.
|
|
157
204
|
|
|
158
205
|
FLAGS
|
|
159
|
-
-
|
|
206
|
+
-f, --force Force npm to fetch remote resources even if a local copy exists on disk.
|
|
207
|
+
-h, --help Show CLI help.
|
|
208
|
+
-s, --silent Silences npm output.
|
|
209
|
+
-v, --verbose Show verbose npm output.
|
|
210
|
+
|
|
211
|
+
GLOBAL FLAGS
|
|
212
|
+
--json Format output as json.
|
|
160
213
|
|
|
161
214
|
DESCRIPTION
|
|
162
|
-
|
|
163
|
-
```
|
|
215
|
+
Installs a plugin into chabok.
|
|
164
216
|
|
|
165
|
-
|
|
217
|
+
Uses bundled npm executable to install plugins into /Users/mohammad/.local/share/@chabokan.net/cli
|
|
166
218
|
|
|
167
|
-
|
|
219
|
+
Installation of a user-installed plugin will override a core plugin.
|
|
168
220
|
|
|
169
|
-
|
|
221
|
+
Use the CHABOK_NPM_LOG_LEVEL environment variable to set the npm loglevel.
|
|
222
|
+
Use the CHABOK_NPM_REGISTRY environment variable to set the npm registry.
|
|
170
223
|
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
$ chabok login [-h] [-u <value>] [-p <value>] [-t <value>]
|
|
224
|
+
ALIASES
|
|
225
|
+
$ chabok plugins add
|
|
174
226
|
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
-p, --password=<value> your password
|
|
178
|
-
-t, --token=<value> login with api token
|
|
179
|
-
-u, --username=<value> your username
|
|
227
|
+
EXAMPLES
|
|
228
|
+
Install a plugin from npm registry.
|
|
180
229
|
|
|
181
|
-
|
|
182
|
-
|
|
230
|
+
$ chabok plugins install myplugin
|
|
231
|
+
|
|
232
|
+
Install a plugin from a github url.
|
|
233
|
+
|
|
234
|
+
$ chabok plugins install https://github.com/someuser/someplugin
|
|
235
|
+
|
|
236
|
+
Install a plugin from a github slug.
|
|
237
|
+
|
|
238
|
+
$ chabok plugins install someuser/someplugin
|
|
183
239
|
```
|
|
184
240
|
|
|
185
|
-
_See code: [
|
|
241
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.3/src/commands/plugins/install.ts)_
|
|
186
242
|
|
|
187
|
-
## `chabok
|
|
243
|
+
## `chabok plugins link PATH`
|
|
188
244
|
|
|
189
|
-
|
|
245
|
+
Links a plugin into the CLI for development.
|
|
190
246
|
|
|
191
247
|
```
|
|
192
248
|
USAGE
|
|
193
|
-
$ chabok
|
|
249
|
+
$ chabok plugins link PATH [-h] [--install] [-v]
|
|
250
|
+
|
|
251
|
+
ARGUMENTS
|
|
252
|
+
PATH [default: .] path to plugin
|
|
194
253
|
|
|
195
254
|
FLAGS
|
|
196
|
-
-h, --help
|
|
255
|
+
-h, --help Show CLI help.
|
|
256
|
+
-v, --verbose
|
|
257
|
+
--[no-]install Install dependencies after linking the plugin.
|
|
197
258
|
|
|
198
259
|
DESCRIPTION
|
|
199
|
-
|
|
260
|
+
Links a plugin into the CLI for development.
|
|
261
|
+
Installation of a linked plugin will override a user-installed or core plugin.
|
|
262
|
+
|
|
263
|
+
e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
|
|
264
|
+
command will override the user-installed or core plugin implementation. This is useful for development work.
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
EXAMPLES
|
|
268
|
+
$ chabok plugins link myplugin
|
|
200
269
|
```
|
|
201
270
|
|
|
202
|
-
_See code: [
|
|
271
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.3/src/commands/plugins/link.ts)_
|
|
203
272
|
|
|
204
|
-
## `chabok
|
|
273
|
+
## `chabok plugins remove [PLUGIN]`
|
|
205
274
|
|
|
206
|
-
|
|
275
|
+
Removes a plugin from the CLI.
|
|
207
276
|
|
|
208
277
|
```
|
|
209
278
|
USAGE
|
|
210
|
-
$ chabok
|
|
279
|
+
$ chabok plugins remove [PLUGIN...] [-h] [-v]
|
|
280
|
+
|
|
281
|
+
ARGUMENTS
|
|
282
|
+
PLUGIN... plugin to uninstall
|
|
211
283
|
|
|
212
284
|
FLAGS
|
|
213
|
-
-h, --help
|
|
214
|
-
-
|
|
285
|
+
-h, --help Show CLI help.
|
|
286
|
+
-v, --verbose
|
|
215
287
|
|
|
216
288
|
DESCRIPTION
|
|
217
|
-
|
|
218
|
-
```
|
|
289
|
+
Removes a plugin from the CLI.
|
|
219
290
|
|
|
220
|
-
|
|
291
|
+
ALIASES
|
|
292
|
+
$ chabok plugins unlink
|
|
293
|
+
$ chabok plugins remove
|
|
294
|
+
|
|
295
|
+
EXAMPLES
|
|
296
|
+
$ chabok plugins remove myplugin
|
|
297
|
+
```
|
|
221
298
|
|
|
222
|
-
## `chabok
|
|
299
|
+
## `chabok plugins reset`
|
|
223
300
|
|
|
224
|
-
|
|
301
|
+
Remove all user-installed and linked plugins.
|
|
225
302
|
|
|
226
303
|
```
|
|
227
304
|
USAGE
|
|
228
|
-
$ chabok
|
|
305
|
+
$ chabok plugins reset [--hard] [--reinstall]
|
|
229
306
|
|
|
230
307
|
FLAGS
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
-h, --help Show CLI help.
|
|
234
|
-
-r, --ram=<value> RAM
|
|
235
|
-
-s, --service=<value> service name
|
|
236
|
-
|
|
237
|
-
DESCRIPTION
|
|
238
|
-
resize a service
|
|
308
|
+
--hard Delete node_modules and package manager related files in addition to uninstalling plugins.
|
|
309
|
+
--reinstall Reinstall all plugins after uninstalling.
|
|
239
310
|
```
|
|
240
311
|
|
|
241
|
-
_See code: [
|
|
312
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.3/src/commands/plugins/reset.ts)_
|
|
242
313
|
|
|
243
|
-
## `chabok
|
|
314
|
+
## `chabok plugins uninstall [PLUGIN]`
|
|
244
315
|
|
|
245
|
-
|
|
316
|
+
Removes a plugin from the CLI.
|
|
246
317
|
|
|
247
318
|
```
|
|
248
319
|
USAGE
|
|
249
|
-
$ chabok
|
|
320
|
+
$ chabok plugins uninstall [PLUGIN...] [-h] [-v]
|
|
321
|
+
|
|
322
|
+
ARGUMENTS
|
|
323
|
+
PLUGIN... plugin to uninstall
|
|
250
324
|
|
|
251
325
|
FLAGS
|
|
252
|
-
-h, --help
|
|
253
|
-
-
|
|
326
|
+
-h, --help Show CLI help.
|
|
327
|
+
-v, --verbose
|
|
254
328
|
|
|
255
329
|
DESCRIPTION
|
|
256
|
-
|
|
330
|
+
Removes a plugin from the CLI.
|
|
331
|
+
|
|
332
|
+
ALIASES
|
|
333
|
+
$ chabok plugins unlink
|
|
334
|
+
$ chabok plugins remove
|
|
335
|
+
|
|
336
|
+
EXAMPLES
|
|
337
|
+
$ chabok plugins uninstall myplugin
|
|
257
338
|
```
|
|
258
339
|
|
|
259
|
-
_See code: [
|
|
340
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.3/src/commands/plugins/uninstall.ts)_
|
|
260
341
|
|
|
261
|
-
## `chabok
|
|
342
|
+
## `chabok plugins unlink [PLUGIN]`
|
|
262
343
|
|
|
263
|
-
|
|
344
|
+
Removes a plugin from the CLI.
|
|
264
345
|
|
|
265
346
|
```
|
|
266
347
|
USAGE
|
|
267
|
-
$ chabok
|
|
348
|
+
$ chabok plugins unlink [PLUGIN...] [-h] [-v]
|
|
349
|
+
|
|
350
|
+
ARGUMENTS
|
|
351
|
+
PLUGIN... plugin to uninstall
|
|
268
352
|
|
|
269
353
|
FLAGS
|
|
270
|
-
-h, --help
|
|
271
|
-
-
|
|
354
|
+
-h, --help Show CLI help.
|
|
355
|
+
-v, --verbose
|
|
272
356
|
|
|
273
357
|
DESCRIPTION
|
|
274
|
-
|
|
275
|
-
```
|
|
358
|
+
Removes a plugin from the CLI.
|
|
276
359
|
|
|
277
|
-
|
|
360
|
+
ALIASES
|
|
361
|
+
$ chabok plugins unlink
|
|
362
|
+
$ chabok plugins remove
|
|
363
|
+
|
|
364
|
+
EXAMPLES
|
|
365
|
+
$ chabok plugins unlink myplugin
|
|
366
|
+
```
|
|
278
367
|
|
|
279
|
-
## `chabok
|
|
368
|
+
## `chabok plugins update`
|
|
280
369
|
|
|
281
|
-
|
|
370
|
+
Update installed plugins.
|
|
282
371
|
|
|
283
372
|
```
|
|
284
373
|
USAGE
|
|
285
|
-
$ chabok
|
|
374
|
+
$ chabok plugins update [-h] [-v]
|
|
286
375
|
|
|
287
376
|
FLAGS
|
|
288
|
-
-h, --help
|
|
289
|
-
-
|
|
377
|
+
-h, --help Show CLI help.
|
|
378
|
+
-v, --verbose
|
|
290
379
|
|
|
291
380
|
DESCRIPTION
|
|
292
|
-
|
|
381
|
+
Update installed plugins.
|
|
293
382
|
```
|
|
294
383
|
|
|
295
|
-
_See code: [
|
|
384
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.3/src/commands/plugins/update.ts)_
|
|
296
385
|
|
|
297
386
|
## `chabok version`
|
|
298
387
|
|
package/bin/dev.cmd
CHANGED
package/bin/dev.js
ADDED