@chabokan.net/cli 0.8.6 → 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 +225 -116
- package/bin/dev.cmd +1 -1
- package/bin/dev.js +6 -0
- package/bin/run.js +5 -0
- package/oclif.manifest.json +2 -310
- package/package.json +57 -55
- 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 -65
- package/lib/commands/account/list.d.ts +0 -8
- package/lib/commands/account/list.js +0 -30
- package/lib/commands/account/remove.d.ts +0 -8
- package/lib/commands/account/remove.js +0 -36
- 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 -164
- package/lib/commands/login.d.ts +0 -11
- package/lib/commands/login.js +0 -90
- package/lib/commands/service/list.d.ts +0 -8
- package/lib/commands/service/list.js +0 -34
- 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 -128
- package/lib/commands/service/restart.d.ts +0 -10
- package/lib/commands/service/restart.js +0 -56
- 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 -11
- package/lib/helper.d.ts +0 -12
- package/lib/helper.js +0 -125
- package/lib/index.d.ts +0 -1
- package/lib/index.js +0 -5
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,253 +29,360 @@ 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
|
|
35
|
-
* [`chabok
|
|
36
|
-
* [`chabok
|
|
37
|
-
* [`chabok
|
|
38
|
-
* [`chabok
|
|
39
|
-
* [`chabok
|
|
40
|
-
* [`chabok
|
|
41
|
-
* [`chabok
|
|
42
|
-
* [`chabok
|
|
33
|
+
* [`chabok help [COMMAND]`](#chabok-help-command)
|
|
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
|
-
|
|
75
|
+
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.0.18/src/commands/autocomplete/index.ts)_
|
|
76
|
+
|
|
77
|
+
## `chabok help [COMMAND]`
|
|
61
78
|
|
|
62
|
-
|
|
79
|
+
Display help for chabok.
|
|
63
80
|
|
|
64
81
|
```
|
|
65
82
|
USAGE
|
|
66
|
-
$ chabok
|
|
83
|
+
$ chabok help [COMMAND...] [-n]
|
|
84
|
+
|
|
85
|
+
ARGUMENTS
|
|
86
|
+
COMMAND... Command to show help for.
|
|
67
87
|
|
|
68
88
|
FLAGS
|
|
69
|
-
-
|
|
89
|
+
-n, --nested-commands Include all nested commands in the output.
|
|
70
90
|
|
|
71
91
|
DESCRIPTION
|
|
72
|
-
|
|
92
|
+
Display help for chabok.
|
|
73
93
|
```
|
|
74
94
|
|
|
75
|
-
|
|
95
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.0.22/src/commands/help.ts)_
|
|
96
|
+
|
|
97
|
+
## `chabok plugins`
|
|
76
98
|
|
|
77
|
-
|
|
99
|
+
List installed plugins.
|
|
78
100
|
|
|
79
101
|
```
|
|
80
102
|
USAGE
|
|
81
|
-
$ chabok
|
|
103
|
+
$ chabok plugins [--json] [--core]
|
|
82
104
|
|
|
83
105
|
FLAGS
|
|
84
|
-
|
|
85
|
-
|
|
106
|
+
--core Show core plugins.
|
|
107
|
+
|
|
108
|
+
GLOBAL FLAGS
|
|
109
|
+
--json Format output as json.
|
|
86
110
|
|
|
87
111
|
DESCRIPTION
|
|
88
|
-
|
|
112
|
+
List installed plugins.
|
|
113
|
+
|
|
114
|
+
EXAMPLES
|
|
115
|
+
$ chabok plugins
|
|
89
116
|
```
|
|
90
117
|
|
|
91
|
-
|
|
118
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.3/src/commands/plugins/index.ts)_
|
|
119
|
+
|
|
120
|
+
## `chabok plugins add PLUGIN`
|
|
92
121
|
|
|
93
|
-
|
|
122
|
+
Installs a plugin into chabok.
|
|
94
123
|
|
|
95
124
|
```
|
|
96
125
|
USAGE
|
|
97
|
-
$ chabok
|
|
126
|
+
$ chabok plugins add PLUGIN... [--json] [-f] [-h] [-s | -v]
|
|
98
127
|
|
|
99
128
|
ARGUMENTS
|
|
100
|
-
|
|
129
|
+
PLUGIN... Plugin to install.
|
|
101
130
|
|
|
102
131
|
FLAGS
|
|
103
|
-
-
|
|
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.
|
|
104
139
|
|
|
105
140
|
DESCRIPTION
|
|
106
|
-
|
|
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
|
|
107
152
|
|
|
108
153
|
EXAMPLES
|
|
109
|
-
|
|
154
|
+
Install a plugin from npm registry.
|
|
110
155
|
|
|
111
|
-
|
|
156
|
+
$ chabok plugins add myplugin
|
|
112
157
|
|
|
113
|
-
|
|
158
|
+
Install a plugin from a github url.
|
|
114
159
|
|
|
115
|
-
|
|
116
|
-
|
|
160
|
+
$ chabok plugins add https://github.com/someuser/someplugin
|
|
161
|
+
|
|
162
|
+
Install a plugin from a github slug.
|
|
117
163
|
|
|
118
|
-
|
|
164
|
+
$ chabok plugins add someuser/someplugin
|
|
165
|
+
```
|
|
119
166
|
|
|
120
|
-
## `chabok
|
|
167
|
+
## `chabok plugins:inspect PLUGIN...`
|
|
121
168
|
|
|
122
|
-
|
|
169
|
+
Displays installation properties of a plugin.
|
|
123
170
|
|
|
124
171
|
```
|
|
125
172
|
USAGE
|
|
126
|
-
$ chabok
|
|
173
|
+
$ chabok plugins inspect PLUGIN...
|
|
174
|
+
|
|
175
|
+
ARGUMENTS
|
|
176
|
+
PLUGIN... [default: .] Plugin to inspect.
|
|
127
177
|
|
|
128
178
|
FLAGS
|
|
129
|
-
-h, --help
|
|
130
|
-
-
|
|
131
|
-
|
|
179
|
+
-h, --help Show CLI help.
|
|
180
|
+
-v, --verbose
|
|
181
|
+
|
|
182
|
+
GLOBAL FLAGS
|
|
183
|
+
--json Format output as json.
|
|
132
184
|
|
|
133
185
|
DESCRIPTION
|
|
134
|
-
|
|
186
|
+
Displays installation properties of a plugin.
|
|
187
|
+
|
|
188
|
+
EXAMPLES
|
|
189
|
+
$ chabok plugins inspect myplugin
|
|
135
190
|
```
|
|
136
191
|
|
|
137
|
-
_See code: [
|
|
192
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.3/src/commands/plugins/inspect.ts)_
|
|
138
193
|
|
|
139
|
-
## `chabok
|
|
194
|
+
## `chabok plugins install PLUGIN`
|
|
140
195
|
|
|
141
|
-
|
|
196
|
+
Installs a plugin into chabok.
|
|
142
197
|
|
|
143
198
|
```
|
|
144
199
|
USAGE
|
|
145
|
-
$ chabok
|
|
200
|
+
$ chabok plugins install PLUGIN... [--json] [-f] [-h] [-s | -v]
|
|
146
201
|
|
|
147
202
|
ARGUMENTS
|
|
148
|
-
|
|
203
|
+
PLUGIN... Plugin to install.
|
|
149
204
|
|
|
150
205
|
FLAGS
|
|
151
|
-
-
|
|
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.
|
|
152
213
|
|
|
153
214
|
DESCRIPTION
|
|
154
|
-
|
|
155
|
-
```
|
|
215
|
+
Installs a plugin into chabok.
|
|
156
216
|
|
|
157
|
-
|
|
217
|
+
Uses bundled npm executable to install plugins into /Users/mohammad/.local/share/@chabokan.net/cli
|
|
158
218
|
|
|
159
|
-
|
|
219
|
+
Installation of a user-installed plugin will override a core plugin.
|
|
160
220
|
|
|
161
|
-
|
|
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.
|
|
162
223
|
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
$ chabok login [-h] [-u <value>] [-p <value>] [-t <value>]
|
|
224
|
+
ALIASES
|
|
225
|
+
$ chabok plugins add
|
|
166
226
|
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
-p, --password=<value> your password
|
|
170
|
-
-t, --token=<value> login with api token
|
|
171
|
-
-u, --username=<value> your username
|
|
227
|
+
EXAMPLES
|
|
228
|
+
Install a plugin from npm registry.
|
|
172
229
|
|
|
173
|
-
|
|
174
|
-
|
|
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
|
|
175
239
|
```
|
|
176
240
|
|
|
177
|
-
_See code: [
|
|
241
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.3/src/commands/plugins/install.ts)_
|
|
178
242
|
|
|
179
|
-
## `chabok
|
|
243
|
+
## `chabok plugins link PATH`
|
|
180
244
|
|
|
181
|
-
|
|
245
|
+
Links a plugin into the CLI for development.
|
|
182
246
|
|
|
183
247
|
```
|
|
184
248
|
USAGE
|
|
185
|
-
$ chabok
|
|
249
|
+
$ chabok plugins link PATH [-h] [--install] [-v]
|
|
250
|
+
|
|
251
|
+
ARGUMENTS
|
|
252
|
+
PATH [default: .] path to plugin
|
|
186
253
|
|
|
187
254
|
FLAGS
|
|
188
|
-
-h, --help
|
|
255
|
+
-h, --help Show CLI help.
|
|
256
|
+
-v, --verbose
|
|
257
|
+
--[no-]install Install dependencies after linking the plugin.
|
|
189
258
|
|
|
190
259
|
DESCRIPTION
|
|
191
|
-
|
|
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
|
|
192
269
|
```
|
|
193
270
|
|
|
194
|
-
|
|
271
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.3/src/commands/plugins/link.ts)_
|
|
195
272
|
|
|
196
|
-
|
|
273
|
+
## `chabok plugins remove [PLUGIN]`
|
|
274
|
+
|
|
275
|
+
Removes a plugin from the CLI.
|
|
197
276
|
|
|
198
277
|
```
|
|
199
278
|
USAGE
|
|
200
|
-
$ chabok
|
|
279
|
+
$ chabok plugins remove [PLUGIN...] [-h] [-v]
|
|
280
|
+
|
|
281
|
+
ARGUMENTS
|
|
282
|
+
PLUGIN... plugin to uninstall
|
|
201
283
|
|
|
202
284
|
FLAGS
|
|
203
|
-
-h, --help
|
|
204
|
-
-
|
|
285
|
+
-h, --help Show CLI help.
|
|
286
|
+
-v, --verbose
|
|
205
287
|
|
|
206
288
|
DESCRIPTION
|
|
207
|
-
|
|
289
|
+
Removes a plugin from the CLI.
|
|
290
|
+
|
|
291
|
+
ALIASES
|
|
292
|
+
$ chabok plugins unlink
|
|
293
|
+
$ chabok plugins remove
|
|
294
|
+
|
|
295
|
+
EXAMPLES
|
|
296
|
+
$ chabok plugins remove myplugin
|
|
208
297
|
```
|
|
209
298
|
|
|
210
|
-
## `chabok
|
|
299
|
+
## `chabok plugins reset`
|
|
211
300
|
|
|
212
|
-
|
|
301
|
+
Remove all user-installed and linked plugins.
|
|
213
302
|
|
|
214
303
|
```
|
|
215
304
|
USAGE
|
|
216
|
-
$ chabok
|
|
305
|
+
$ chabok plugins reset [--hard] [--reinstall]
|
|
217
306
|
|
|
218
307
|
FLAGS
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
-h, --help Show CLI help.
|
|
222
|
-
-r, --ram=<value> RAM
|
|
223
|
-
-s, --service=<value> service name
|
|
224
|
-
|
|
225
|
-
DESCRIPTION
|
|
226
|
-
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.
|
|
227
310
|
```
|
|
228
311
|
|
|
229
|
-
|
|
312
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.3/src/commands/plugins/reset.ts)_
|
|
313
|
+
|
|
314
|
+
## `chabok plugins uninstall [PLUGIN]`
|
|
230
315
|
|
|
231
|
-
|
|
316
|
+
Removes a plugin from the CLI.
|
|
232
317
|
|
|
233
318
|
```
|
|
234
319
|
USAGE
|
|
235
|
-
$ chabok
|
|
320
|
+
$ chabok plugins uninstall [PLUGIN...] [-h] [-v]
|
|
321
|
+
|
|
322
|
+
ARGUMENTS
|
|
323
|
+
PLUGIN... plugin to uninstall
|
|
236
324
|
|
|
237
325
|
FLAGS
|
|
238
|
-
-h, --help
|
|
239
|
-
-
|
|
326
|
+
-h, --help Show CLI help.
|
|
327
|
+
-v, --verbose
|
|
240
328
|
|
|
241
329
|
DESCRIPTION
|
|
242
|
-
|
|
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
|
|
243
338
|
```
|
|
244
339
|
|
|
245
|
-
|
|
340
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.3/src/commands/plugins/uninstall.ts)_
|
|
341
|
+
|
|
342
|
+
## `chabok plugins unlink [PLUGIN]`
|
|
246
343
|
|
|
247
|
-
|
|
344
|
+
Removes a plugin from the CLI.
|
|
248
345
|
|
|
249
346
|
```
|
|
250
347
|
USAGE
|
|
251
|
-
$ chabok
|
|
348
|
+
$ chabok plugins unlink [PLUGIN...] [-h] [-v]
|
|
349
|
+
|
|
350
|
+
ARGUMENTS
|
|
351
|
+
PLUGIN... plugin to uninstall
|
|
252
352
|
|
|
253
353
|
FLAGS
|
|
254
|
-
-h, --help
|
|
255
|
-
-
|
|
354
|
+
-h, --help Show CLI help.
|
|
355
|
+
-v, --verbose
|
|
256
356
|
|
|
257
357
|
DESCRIPTION
|
|
258
|
-
|
|
358
|
+
Removes a plugin from the CLI.
|
|
359
|
+
|
|
360
|
+
ALIASES
|
|
361
|
+
$ chabok plugins unlink
|
|
362
|
+
$ chabok plugins remove
|
|
363
|
+
|
|
364
|
+
EXAMPLES
|
|
365
|
+
$ chabok plugins unlink myplugin
|
|
259
366
|
```
|
|
260
367
|
|
|
261
|
-
## `chabok
|
|
368
|
+
## `chabok plugins update`
|
|
262
369
|
|
|
263
|
-
|
|
370
|
+
Update installed plugins.
|
|
264
371
|
|
|
265
372
|
```
|
|
266
373
|
USAGE
|
|
267
|
-
$ chabok
|
|
374
|
+
$ chabok plugins update [-h] [-v]
|
|
268
375
|
|
|
269
376
|
FLAGS
|
|
270
|
-
-h, --help
|
|
271
|
-
-
|
|
377
|
+
-h, --help Show CLI help.
|
|
378
|
+
-v, --verbose
|
|
272
379
|
|
|
273
380
|
DESCRIPTION
|
|
274
|
-
|
|
381
|
+
Update installed plugins.
|
|
275
382
|
```
|
|
276
383
|
|
|
384
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.1.3/src/commands/plugins/update.ts)_
|
|
385
|
+
|
|
277
386
|
## `chabok version`
|
|
278
387
|
|
|
279
388
|
```
|
|
@@ -292,5 +401,5 @@ FLAG DESCRIPTIONS
|
|
|
292
401
|
Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.
|
|
293
402
|
```
|
|
294
403
|
|
|
295
|
-
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/
|
|
404
|
+
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v2.1.2/src/commands/version.ts)_
|
|
296
405
|
<!-- commandsstop -->
|
package/bin/dev.cmd
CHANGED
package/bin/dev.js
ADDED