@atomicsolutions/proton5-cli 5.0.1

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.
Files changed (77) hide show
  1. package/README.md +590 -0
  2. package/bin/dev.cmd +3 -0
  3. package/bin/dev.js +5 -0
  4. package/bin/run.cmd +3 -0
  5. package/bin/run.js +5 -0
  6. package/dist/commands/config/add.d.ts +14 -0
  7. package/dist/commands/config/add.js +122 -0
  8. package/dist/commands/config/edit.d.ts +15 -0
  9. package/dist/commands/config/edit.js +63 -0
  10. package/dist/commands/config/list.d.ts +6 -0
  11. package/dist/commands/config/list.js +31 -0
  12. package/dist/commands/config/remove.d.ts +9 -0
  13. package/dist/commands/config/remove.js +35 -0
  14. package/dist/commands/connect.d.ts +9 -0
  15. package/dist/commands/connect.js +41 -0
  16. package/dist/commands/disconnect.d.ts +9 -0
  17. package/dist/commands/disconnect.js +30 -0
  18. package/dist/commands/runner/list-run.d.ts +6 -0
  19. package/dist/commands/runner/list-run.js +71 -0
  20. package/dist/commands/runner/status.d.ts +6 -0
  21. package/dist/commands/runner/status.js +24 -0
  22. package/dist/commands/runner/stop-run.d.ts +9 -0
  23. package/dist/commands/runner/stop-run.js +34 -0
  24. package/dist/commands/settings/index.d.ts +6 -0
  25. package/dist/commands/settings/index.js +25 -0
  26. package/dist/commands/settings/set.d.ts +10 -0
  27. package/dist/commands/settings/set.js +39 -0
  28. package/dist/commands/settings/unset.d.ts +10 -0
  29. package/dist/commands/settings/unset.js +35 -0
  30. package/dist/core/fileSystem/index.d.ts +10 -0
  31. package/dist/core/fileSystem/index.js +107 -0
  32. package/dist/core/manager/index.d.ts +31 -0
  33. package/dist/core/manager/index.js +287 -0
  34. package/dist/core/proton/api.d.ts +7 -0
  35. package/dist/core/proton/api.js +122 -0
  36. package/dist/core/proton/maven.d.ts +5 -0
  37. package/dist/core/proton/maven.js +74 -0
  38. package/dist/core/proton/npm.d.ts +1 -0
  39. package/dist/core/proton/npm.js +22 -0
  40. package/dist/core/proton/playwright.d.ts +5 -0
  41. package/dist/core/proton/playwright.js +47 -0
  42. package/dist/core/proton/pyTest.d.ts +5 -0
  43. package/dist/core/proton/pyTest.js +52 -0
  44. package/dist/core/proton/vbs.d.ts +5 -0
  45. package/dist/core/proton/vbs.js +46 -0
  46. package/dist/core/runner/index.d.ts +16 -0
  47. package/dist/core/runner/index.js +76 -0
  48. package/dist/core/services/api.d.ts +2 -0
  49. package/dist/core/services/api.js +20 -0
  50. package/dist/core/socket/index.d.ts +2 -0
  51. package/dist/core/socket/index.js +99 -0
  52. package/dist/core/store/index.d.ts +14 -0
  53. package/dist/core/store/index.js +212 -0
  54. package/dist/core/system/index.d.ts +12 -0
  55. package/dist/core/system/index.js +48 -0
  56. package/dist/daemon/index.d.ts +1 -0
  57. package/dist/daemon/index.js +5 -0
  58. package/dist/daemon/server.d.ts +1 -0
  59. package/dist/daemon/server.js +40 -0
  60. package/dist/daemon/state.d.ts +7 -0
  61. package/dist/daemon/state.js +15 -0
  62. package/dist/index.d.ts +1 -0
  63. package/dist/index.js +1 -0
  64. package/dist/ipc/client.d.ts +1 -0
  65. package/dist/ipc/client.js +16 -0
  66. package/dist/ipc/ensureDaemon.d.ts +1 -0
  67. package/dist/ipc/ensureDaemon.js +42 -0
  68. package/dist/ipc/protocol.d.ts +14 -0
  69. package/dist/ipc/protocol.js +1 -0
  70. package/dist/shared/constants.d.ts +4 -0
  71. package/dist/shared/constants.js +4 -0
  72. package/dist/shared/socketPath.d.ts +1 -0
  73. package/dist/shared/socketPath.js +5 -0
  74. package/dist/shared/types.d.ts +130 -0
  75. package/dist/shared/types.js +1 -0
  76. package/oclif.manifest.json +409 -0
  77. package/package.json +86 -0
package/README.md ADDED
@@ -0,0 +1,590 @@
1
+ proton5-cli
2
+ =================
3
+
4
+ CLI para gerenciamento do Proton Runner v5 — conecte-se a servidores Proton, gerencie configurações de conexão e monitore execuções de automações diretamente pelo terminal.
5
+
6
+ [![oclif](https://img.shields.io/badge/cli-oclif-brightgreen.svg)](https://oclif.io)
7
+ [![Version](https://img.shields.io/npm/v/proton5-cli.svg)](https://npmjs.org/package/proton5-cli)
8
+ [![Downloads/week](https://img.shields.io/npm/dw/proton5-cli.svg)](https://npmjs.org/package/proton5-cli)
9
+
10
+ <!-- toc -->
11
+
12
+ <!-- tocstop -->
13
+
14
+ ## Instalação
15
+
16
+ ```sh-session
17
+ $ npm install -g proton5-cli
18
+ ```
19
+
20
+ **Requisito:** Node.js >= 22.0.0
21
+
22
+ ## Uso
23
+
24
+ ```sh-session
25
+ $ proton COMMAND
26
+ $ proton --help [COMMAND]
27
+ $ proton --version
28
+ ```
29
+
30
+ ## Comandos
31
+
32
+ <!-- commands -->
33
+ * [`proton config add`](#proton-config-add)
34
+ * [`proton config edit [NAME]`](#proton-config-edit-name)
35
+ * [`proton config list`](#proton-config-list)
36
+ * [`proton config remove [NAME]`](#proton-config-remove-name)
37
+ * [`proton connect [NAME]`](#proton-connect-name)
38
+ * [`proton disconnect [NAME]`](#proton-disconnect-name)
39
+ * [`proton help [COMMAND]`](#proton-help-command)
40
+ * [`proton plugins`](#proton-plugins)
41
+ * [`proton plugins add PLUGIN`](#proton-plugins-add-plugin)
42
+ * [`proton plugins:inspect PLUGIN...`](#proton-pluginsinspect-plugin)
43
+ * [`proton plugins install PLUGIN`](#proton-plugins-install-plugin)
44
+ * [`proton plugins link PATH`](#proton-plugins-link-path)
45
+ * [`proton plugins remove [PLUGIN]`](#proton-plugins-remove-plugin)
46
+ * [`proton plugins reset`](#proton-plugins-reset)
47
+ * [`proton plugins uninstall [PLUGIN]`](#proton-plugins-uninstall-plugin)
48
+ * [`proton plugins unlink [PLUGIN]`](#proton-plugins-unlink-plugin)
49
+ * [`proton plugins update`](#proton-plugins-update)
50
+ * [`proton runner list-run`](#proton-runner-list-run)
51
+ * [`proton runner status`](#proton-runner-status)
52
+ * [`proton runner stop-run [ID]`](#proton-runner-stop-run-id)
53
+ * [`proton settings`](#proton-settings)
54
+ * [`proton settings set`](#proton-settings-set)
55
+ * [`proton settings unset`](#proton-settings-unset)
56
+
57
+ ## `proton config add`
58
+
59
+ Add a new Proton server connection
60
+
61
+ ```
62
+ USAGE
63
+ $ proton config add [--name <value>] [--server <value>] [--email <value>] [--password <value>]
64
+
65
+ FLAGS
66
+ --email=<value> E-mail de acesso
67
+ --name=<value> Nome da configuração
68
+ --password=<value> Senha de acesso
69
+ --server=<value> Endereço do servidor
70
+
71
+ DESCRIPTION
72
+ Add a new Proton server connection
73
+
74
+ EXAMPLES
75
+ $ proton config add
76
+ ```
77
+
78
+ _See code: [src/commands/config/add.ts](https://github.com/atomicsolutions/proton5-cli/blob/v5.0.1/src/commands/config/add.ts)_
79
+
80
+ ## `proton config edit [NAME]`
81
+
82
+ Edit an existing Proton server connection
83
+
84
+ ```
85
+ USAGE
86
+ $ proton config edit [NAME] [--name <value>] [--server <value>] [--email <value>] [--password <value>]
87
+
88
+ FLAGS
89
+ --email=<value> E-mail de acesso
90
+ --name=<value> Nome da configuração
91
+ --password=<value> Senha de acesso
92
+ --server=<value> Endereço do servidor
93
+
94
+ DESCRIPTION
95
+ Edit an existing Proton server connection
96
+
97
+ EXAMPLES
98
+ $ proton config edit
99
+ ```
100
+
101
+ _See code: [src/commands/config/edit.ts](https://github.com/atomicsolutions/proton5-cli/blob/v5.0.1/src/commands/config/edit.ts)_
102
+
103
+ ## `proton config list`
104
+
105
+ Display a list of configured connections
106
+
107
+ ```
108
+ USAGE
109
+ $ proton config list
110
+
111
+ DESCRIPTION
112
+ Display a list of configured connections
113
+
114
+ EXAMPLES
115
+ $ proton config list
116
+ ```
117
+
118
+ _See code: [src/commands/config/list.ts](https://github.com/atomicsolutions/proton5-cli/blob/v5.0.1/src/commands/config/list.ts)_
119
+
120
+ ## `proton config remove [NAME]`
121
+
122
+ Remove an existing Proton server connection
123
+
124
+ ```
125
+ USAGE
126
+ $ proton config remove [NAME]
127
+
128
+ DESCRIPTION
129
+ Remove an existing Proton server connection
130
+
131
+ EXAMPLES
132
+ $ proton config remove
133
+ ```
134
+
135
+ _See code: [src/commands/config/remove.ts](https://github.com/atomicsolutions/proton5-cli/blob/v5.0.1/src/commands/config/remove.ts)_
136
+
137
+ ## `proton connect [NAME]`
138
+
139
+ Connect to a Proton server using a saved configuration
140
+
141
+ ```
142
+ USAGE
143
+ $ proton connect [NAME]
144
+
145
+ DESCRIPTION
146
+ Connect to a Proton server using a saved configuration
147
+
148
+ EXAMPLES
149
+ $ proton connect
150
+ ```
151
+
152
+ _See code: [src/commands/connect.ts](https://github.com/atomicsolutions/proton5-cli/blob/v5.0.1/src/commands/connect.ts)_
153
+
154
+ ## `proton disconnect [NAME]`
155
+
156
+ Disconnect from a Proton server
157
+
158
+ ```
159
+ USAGE
160
+ $ proton disconnect [NAME]
161
+
162
+ DESCRIPTION
163
+ Disconnect from a Proton server
164
+
165
+ EXAMPLES
166
+ $ proton disconnect
167
+ ```
168
+
169
+ _See code: [src/commands/disconnect.ts](https://github.com/atomicsolutions/proton5-cli/blob/v5.0.1/src/commands/disconnect.ts)_
170
+
171
+ ## `proton help [COMMAND]`
172
+
173
+ Display help for proton.
174
+
175
+ ```
176
+ USAGE
177
+ $ proton help [COMMAND...] [-n]
178
+
179
+ ARGUMENTS
180
+ [COMMAND...] Command to show help for.
181
+
182
+ FLAGS
183
+ -n, --nested-commands Include all nested commands in the output.
184
+
185
+ DESCRIPTION
186
+ Display help for proton.
187
+ ```
188
+
189
+ _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.37/src/commands/help.ts)_
190
+
191
+ ## `proton plugins`
192
+
193
+ List installed plugins.
194
+
195
+ ```
196
+ USAGE
197
+ $ proton plugins [--json] [--core]
198
+
199
+ FLAGS
200
+ --core Show core plugins.
201
+
202
+ GLOBAL FLAGS
203
+ --json Format output as json.
204
+
205
+ DESCRIPTION
206
+ List installed plugins.
207
+
208
+ EXAMPLES
209
+ $ proton plugins
210
+ ```
211
+
212
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.56/src/commands/plugins/index.ts)_
213
+
214
+ ## `proton plugins add PLUGIN`
215
+
216
+ Installs a plugin into proton.
217
+
218
+ ```
219
+ USAGE
220
+ $ proton plugins add PLUGIN... [--json] [-f] [-h] [-s | -v]
221
+
222
+ ARGUMENTS
223
+ PLUGIN... Plugin to install.
224
+
225
+ FLAGS
226
+ -f, --force Force npm to fetch remote resources even if a local copy exists on disk.
227
+ -h, --help Show CLI help.
228
+ -s, --silent Silences npm output.
229
+ -v, --verbose Show verbose npm output.
230
+
231
+ GLOBAL FLAGS
232
+ --json Format output as json.
233
+
234
+ DESCRIPTION
235
+ Installs a plugin into proton.
236
+
237
+ Uses npm to install plugins.
238
+
239
+ Installation of a user-installed plugin will override a core plugin.
240
+
241
+ Use the PROTON_NPM_LOG_LEVEL environment variable to set the npm loglevel.
242
+ Use the PROTON_NPM_REGISTRY environment variable to set the npm registry.
243
+
244
+ ALIASES
245
+ $ proton plugins add
246
+
247
+ EXAMPLES
248
+ Install a plugin from npm registry.
249
+
250
+ $ proton plugins add myplugin
251
+
252
+ Install a plugin from a github url.
253
+
254
+ $ proton plugins add https://github.com/someuser/someplugin
255
+
256
+ Install a plugin from a github slug.
257
+
258
+ $ proton plugins add someuser/someplugin
259
+ ```
260
+
261
+ ## `proton plugins:inspect PLUGIN...`
262
+
263
+ Displays installation properties of a plugin.
264
+
265
+ ```
266
+ USAGE
267
+ $ proton plugins inspect PLUGIN...
268
+
269
+ ARGUMENTS
270
+ PLUGIN... [default: .] Plugin to inspect.
271
+
272
+ FLAGS
273
+ -h, --help Show CLI help.
274
+ -v, --verbose
275
+
276
+ GLOBAL FLAGS
277
+ --json Format output as json.
278
+
279
+ DESCRIPTION
280
+ Displays installation properties of a plugin.
281
+
282
+ EXAMPLES
283
+ $ proton plugins inspect myplugin
284
+ ```
285
+
286
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.56/src/commands/plugins/inspect.ts)_
287
+
288
+ ## `proton plugins install PLUGIN`
289
+
290
+ Installs a plugin into proton.
291
+
292
+ ```
293
+ USAGE
294
+ $ proton plugins install PLUGIN... [--json] [-f] [-h] [-s | -v]
295
+
296
+ ARGUMENTS
297
+ PLUGIN... Plugin to install.
298
+
299
+ FLAGS
300
+ -f, --force Force npm to fetch remote resources even if a local copy exists on disk.
301
+ -h, --help Show CLI help.
302
+ -s, --silent Silences npm output.
303
+ -v, --verbose Show verbose npm output.
304
+
305
+ GLOBAL FLAGS
306
+ --json Format output as json.
307
+
308
+ DESCRIPTION
309
+ Installs a plugin into proton.
310
+
311
+ Uses npm to install plugins.
312
+
313
+ Installation of a user-installed plugin will override a core plugin.
314
+
315
+ Use the PROTON_NPM_LOG_LEVEL environment variable to set the npm loglevel.
316
+ Use the PROTON_NPM_REGISTRY environment variable to set the npm registry.
317
+
318
+ ALIASES
319
+ $ proton plugins add
320
+
321
+ EXAMPLES
322
+ Install a plugin from npm registry.
323
+
324
+ $ proton plugins install myplugin
325
+
326
+ Install a plugin from a github url.
327
+
328
+ $ proton plugins install https://github.com/someuser/someplugin
329
+
330
+ Install a plugin from a github slug.
331
+
332
+ $ proton plugins install someuser/someplugin
333
+ ```
334
+
335
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.56/src/commands/plugins/install.ts)_
336
+
337
+ ## `proton plugins link PATH`
338
+
339
+ Links a plugin into the CLI for development.
340
+
341
+ ```
342
+ USAGE
343
+ $ proton plugins link PATH [-h] [--install] [-v]
344
+
345
+ ARGUMENTS
346
+ PATH [default: .] path to plugin
347
+
348
+ FLAGS
349
+ -h, --help Show CLI help.
350
+ -v, --verbose
351
+ --[no-]install Install dependencies after linking the plugin.
352
+
353
+ DESCRIPTION
354
+ Links a plugin into the CLI for development.
355
+
356
+ Installation of a linked plugin will override a user-installed or core plugin.
357
+
358
+ e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
359
+ command will override the user-installed or core plugin implementation. This is useful for development work.
360
+
361
+
362
+ EXAMPLES
363
+ $ proton plugins link myplugin
364
+ ```
365
+
366
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.56/src/commands/plugins/link.ts)_
367
+
368
+ ## `proton plugins remove [PLUGIN]`
369
+
370
+ Removes a plugin from the CLI.
371
+
372
+ ```
373
+ USAGE
374
+ $ proton plugins remove [PLUGIN...] [-h] [-v]
375
+
376
+ ARGUMENTS
377
+ [PLUGIN...] plugin to uninstall
378
+
379
+ FLAGS
380
+ -h, --help Show CLI help.
381
+ -v, --verbose
382
+
383
+ DESCRIPTION
384
+ Removes a plugin from the CLI.
385
+
386
+ ALIASES
387
+ $ proton plugins unlink
388
+ $ proton plugins remove
389
+
390
+ EXAMPLES
391
+ $ proton plugins remove myplugin
392
+ ```
393
+
394
+ ## `proton plugins reset`
395
+
396
+ Remove all user-installed and linked plugins.
397
+
398
+ ```
399
+ USAGE
400
+ $ proton plugins reset [--hard] [--reinstall]
401
+
402
+ FLAGS
403
+ --hard Delete node_modules and package manager related files in addition to uninstalling plugins.
404
+ --reinstall Reinstall all plugins after uninstalling.
405
+ ```
406
+
407
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.56/src/commands/plugins/reset.ts)_
408
+
409
+ ## `proton plugins uninstall [PLUGIN]`
410
+
411
+ Removes a plugin from the CLI.
412
+
413
+ ```
414
+ USAGE
415
+ $ proton plugins uninstall [PLUGIN...] [-h] [-v]
416
+
417
+ ARGUMENTS
418
+ [PLUGIN...] plugin to uninstall
419
+
420
+ FLAGS
421
+ -h, --help Show CLI help.
422
+ -v, --verbose
423
+
424
+ DESCRIPTION
425
+ Removes a plugin from the CLI.
426
+
427
+ ALIASES
428
+ $ proton plugins unlink
429
+ $ proton plugins remove
430
+
431
+ EXAMPLES
432
+ $ proton plugins uninstall myplugin
433
+ ```
434
+
435
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.56/src/commands/plugins/uninstall.ts)_
436
+
437
+ ## `proton plugins unlink [PLUGIN]`
438
+
439
+ Removes a plugin from the CLI.
440
+
441
+ ```
442
+ USAGE
443
+ $ proton plugins unlink [PLUGIN...] [-h] [-v]
444
+
445
+ ARGUMENTS
446
+ [PLUGIN...] plugin to uninstall
447
+
448
+ FLAGS
449
+ -h, --help Show CLI help.
450
+ -v, --verbose
451
+
452
+ DESCRIPTION
453
+ Removes a plugin from the CLI.
454
+
455
+ ALIASES
456
+ $ proton plugins unlink
457
+ $ proton plugins remove
458
+
459
+ EXAMPLES
460
+ $ proton plugins unlink myplugin
461
+ ```
462
+
463
+ ## `proton plugins update`
464
+
465
+ Update installed plugins.
466
+
467
+ ```
468
+ USAGE
469
+ $ proton plugins update [-h] [-v]
470
+
471
+ FLAGS
472
+ -h, --help Show CLI help.
473
+ -v, --verbose
474
+
475
+ DESCRIPTION
476
+ Update installed plugins.
477
+ ```
478
+
479
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.4.56/src/commands/plugins/update.ts)_
480
+
481
+ ## `proton runner list-run`
482
+
483
+ Retrieve the list of runs executed by the Proton runner
484
+
485
+ ```
486
+ USAGE
487
+ $ proton runner list-run
488
+
489
+ DESCRIPTION
490
+ Retrieve the list of runs executed by the Proton runner
491
+
492
+ EXAMPLES
493
+ $ proton runner list-run
494
+ ```
495
+
496
+ _See code: [src/commands/runner/list-run.ts](https://github.com/atomicsolutions/proton5-cli/blob/v5.0.1/src/commands/runner/list-run.ts)_
497
+
498
+ ## `proton runner status`
499
+
500
+ Retrieve the status of the Proton runner
501
+
502
+ ```
503
+ USAGE
504
+ $ proton runner status
505
+
506
+ DESCRIPTION
507
+ Retrieve the status of the Proton runner
508
+
509
+ EXAMPLES
510
+ $ proton runner status
511
+ ```
512
+
513
+ _See code: [src/commands/runner/status.ts](https://github.com/atomicsolutions/proton5-cli/blob/v5.0.1/src/commands/runner/status.ts)_
514
+
515
+ ## `proton runner stop-run [ID]`
516
+
517
+ Stop selected run
518
+
519
+ ```
520
+ USAGE
521
+ $ proton runner stop-run [ID]
522
+
523
+ DESCRIPTION
524
+ Stop selected run
525
+
526
+ EXAMPLES
527
+ $ proton runner stop-run
528
+ ```
529
+
530
+ _See code: [src/commands/runner/stop-run.ts](https://github.com/atomicsolutions/proton5-cli/blob/v5.0.1/src/commands/runner/stop-run.ts)_
531
+
532
+ ## `proton settings`
533
+
534
+ Retrieve the settings of the Proton runner
535
+
536
+ ```
537
+ USAGE
538
+ $ proton settings
539
+
540
+ DESCRIPTION
541
+ Retrieve the settings of the Proton runner
542
+
543
+ EXAMPLES
544
+ $ proton settings
545
+ ```
546
+
547
+ _See code: [src/commands/settings/index.ts](https://github.com/atomicsolutions/proton5-cli/blob/v5.0.1/src/commands/settings/index.ts)_
548
+
549
+ ## `proton settings set`
550
+
551
+ Set Proton server settings
552
+
553
+ ```
554
+ USAGE
555
+ $ proton settings set [--mavenPath <value>] [--parallelRuns <value>]
556
+
557
+ FLAGS
558
+ --mavenPath=<value> Caminho do Maven (ex: C:\maven\bin\mvn.cmd)
559
+ --parallelRuns=<value> Número de execuções paralelas
560
+
561
+ DESCRIPTION
562
+ Set Proton server settings
563
+
564
+ EXAMPLES
565
+ $ proton settings set
566
+ ```
567
+
568
+ _See code: [src/commands/settings/set.ts](https://github.com/atomicsolutions/proton5-cli/blob/v5.0.1/src/commands/settings/set.ts)_
569
+
570
+ ## `proton settings unset`
571
+
572
+ Unset Proton server settings
573
+
574
+ ```
575
+ USAGE
576
+ $ proton settings unset [--mavenPath] [--parallelRuns]
577
+
578
+ FLAGS
579
+ --mavenPath Caminho do Maven (ex: C:\maven\bin\mvn.cmd)
580
+ --parallelRuns Número de execuções paralelas
581
+
582
+ DESCRIPTION
583
+ Unset Proton server settings
584
+
585
+ EXAMPLES
586
+ $ proton settings unset
587
+ ```
588
+
589
+ _See code: [src/commands/settings/unset.ts](https://github.com/atomicsolutions/proton5-cli/blob/v5.0.1/src/commands/settings/unset.ts)_
590
+ <!-- commandsstop -->
package/bin/dev.cmd ADDED
@@ -0,0 +1,3 @@
1
+ @echo off
2
+
3
+ node --loader ts-node/esm --no-warnings=ExperimentalWarning "%~dp0\dev" %*
package/bin/dev.js ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env -S node --loader ts-node/esm --disable-warning=ExperimentalWarning
2
+
3
+ import {execute} from '@oclif/core'
4
+
5
+ await execute({development: true, dir: import.meta.url})
package/bin/run.cmd ADDED
@@ -0,0 +1,3 @@
1
+ @echo off
2
+
3
+ node "%~dp0\run" %*
package/bin/run.js ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env node
2
+
3
+ import {execute} from '@oclif/core'
4
+
5
+ await execute({dir: import.meta.url})
@@ -0,0 +1,14 @@
1
+ import { Command } from '@oclif/core';
2
+ export default class ConfigAdd extends Command {
3
+ static description: string;
4
+ static examples: string[];
5
+ static flags: {
6
+ name: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
7
+ server: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
8
+ email: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
9
+ password: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
10
+ };
11
+ run(): Promise<void>;
12
+ private getMissingFields;
13
+ private questionFor;
14
+ }