@speedkit/cli 2.5.0 → 2.6.0
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 +1 -271
- package/oclif.manifest.json +1 -1
- package/package.json +8 -5
package/README.md
CHANGED
|
@@ -74,7 +74,7 @@ $ npm install -g @speedkit/cli
|
|
|
74
74
|
$ sk COMMAND
|
|
75
75
|
running command...
|
|
76
76
|
$ sk (--version)
|
|
77
|
-
@speedkit/cli/2.
|
|
77
|
+
@speedkit/cli/2.6.0 linux-x64 node-v20.11.1
|
|
78
78
|
$ sk --help [COMMAND]
|
|
79
79
|
USAGE
|
|
80
80
|
$ sk COMMAND
|
|
@@ -95,16 +95,6 @@ USAGE
|
|
|
95
95
|
* [`sk login [APP]`](#sk-login-app)
|
|
96
96
|
* [`sk onboarding CUSTOMERPATH`](#sk-onboarding-customerpath)
|
|
97
97
|
* [`sk param-diff PAGEURL`](#sk-param-diff-pageurl)
|
|
98
|
-
* [`sk plugins`](#sk-plugins)
|
|
99
|
-
* [`sk plugins:install PLUGIN...`](#sk-pluginsinstall-plugin)
|
|
100
|
-
* [`sk plugins:inspect PLUGIN...`](#sk-pluginsinspect-plugin)
|
|
101
|
-
* [`sk plugins:install PLUGIN...`](#sk-pluginsinstall-plugin-1)
|
|
102
|
-
* [`sk plugins:link PLUGIN`](#sk-pluginslink-plugin)
|
|
103
|
-
* [`sk plugins:uninstall PLUGIN...`](#sk-pluginsuninstall-plugin)
|
|
104
|
-
* [`sk plugins reset`](#sk-plugins-reset)
|
|
105
|
-
* [`sk plugins:uninstall PLUGIN...`](#sk-pluginsuninstall-plugin-1)
|
|
106
|
-
* [`sk plugins:uninstall PLUGIN...`](#sk-pluginsuninstall-plugin-2)
|
|
107
|
-
* [`sk plugins update`](#sk-plugins-update)
|
|
108
98
|
* [`sk pop-prewarm APP`](#sk-pop-prewarm-app)
|
|
109
99
|
* [`sk prewarm APP PATH`](#sk-prewarm-app-path)
|
|
110
100
|
* [`sk pull CUSTOMERPATH`](#sk-pull-customerpath)
|
|
@@ -407,266 +397,6 @@ EXAMPLES
|
|
|
407
397
|
$ sk prewarm https://www.decathlon.de/ -h
|
|
408
398
|
```
|
|
409
399
|
|
|
410
|
-
## `sk plugins`
|
|
411
|
-
|
|
412
|
-
List installed plugins.
|
|
413
|
-
|
|
414
|
-
```
|
|
415
|
-
USAGE
|
|
416
|
-
$ sk plugins [--json] [--core]
|
|
417
|
-
|
|
418
|
-
FLAGS
|
|
419
|
-
--core Show core plugins.
|
|
420
|
-
|
|
421
|
-
GLOBAL FLAGS
|
|
422
|
-
--json Format output as json.
|
|
423
|
-
|
|
424
|
-
DESCRIPTION
|
|
425
|
-
List installed plugins.
|
|
426
|
-
|
|
427
|
-
EXAMPLES
|
|
428
|
-
$ sk plugins
|
|
429
|
-
```
|
|
430
|
-
|
|
431
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.1.2/src/commands/plugins/index.ts)_
|
|
432
|
-
|
|
433
|
-
## `sk plugins:install PLUGIN...`
|
|
434
|
-
|
|
435
|
-
Installs a plugin into the CLI.
|
|
436
|
-
|
|
437
|
-
```
|
|
438
|
-
USAGE
|
|
439
|
-
$ sk plugins add plugins:install PLUGIN...
|
|
440
|
-
|
|
441
|
-
ARGUMENTS
|
|
442
|
-
PLUGIN Plugin to install.
|
|
443
|
-
|
|
444
|
-
FLAGS
|
|
445
|
-
-f, --force Run yarn install with force flag.
|
|
446
|
-
-h, --help Show CLI help.
|
|
447
|
-
-s, --silent Silences yarn output.
|
|
448
|
-
-v, --verbose Show verbose yarn output.
|
|
449
|
-
|
|
450
|
-
DESCRIPTION
|
|
451
|
-
Installs a plugin into the CLI.
|
|
452
|
-
Can be installed from npm or a git url.
|
|
453
|
-
|
|
454
|
-
Installation of a user-installed plugin will override a core plugin.
|
|
455
|
-
|
|
456
|
-
e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
|
|
457
|
-
will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
|
|
458
|
-
the CLI without the need to patch and update the whole CLI.
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
ALIASES
|
|
462
|
-
$ sk plugins add
|
|
463
|
-
|
|
464
|
-
EXAMPLES
|
|
465
|
-
$ sk plugins:install myplugin
|
|
466
|
-
|
|
467
|
-
$ sk plugins:install https://github.com/someuser/someplugin
|
|
468
|
-
|
|
469
|
-
$ sk plugins:install someuser/someplugin
|
|
470
|
-
```
|
|
471
|
-
|
|
472
|
-
## `sk plugins:inspect PLUGIN...`
|
|
473
|
-
|
|
474
|
-
Displays installation properties of a plugin.
|
|
475
|
-
|
|
476
|
-
```
|
|
477
|
-
USAGE
|
|
478
|
-
$ sk plugins inspect PLUGIN...
|
|
479
|
-
|
|
480
|
-
ARGUMENTS
|
|
481
|
-
PLUGIN [default: .] Plugin to inspect.
|
|
482
|
-
|
|
483
|
-
FLAGS
|
|
484
|
-
-h, --help Show CLI help.
|
|
485
|
-
-v, --verbose
|
|
486
|
-
|
|
487
|
-
GLOBAL FLAGS
|
|
488
|
-
--json Format output as json.
|
|
489
|
-
|
|
490
|
-
DESCRIPTION
|
|
491
|
-
Displays installation properties of a plugin.
|
|
492
|
-
|
|
493
|
-
EXAMPLES
|
|
494
|
-
$ sk plugins:inspect myplugin
|
|
495
|
-
```
|
|
496
|
-
|
|
497
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.1.2/src/commands/plugins/inspect.ts)_
|
|
498
|
-
|
|
499
|
-
## `sk plugins:install PLUGIN...`
|
|
500
|
-
|
|
501
|
-
Installs a plugin into the CLI.
|
|
502
|
-
|
|
503
|
-
```
|
|
504
|
-
USAGE
|
|
505
|
-
$ sk plugins install PLUGIN...
|
|
506
|
-
|
|
507
|
-
ARGUMENTS
|
|
508
|
-
PLUGIN Plugin to install.
|
|
509
|
-
|
|
510
|
-
FLAGS
|
|
511
|
-
-f, --force Run yarn install with force flag.
|
|
512
|
-
-h, --help Show CLI help.
|
|
513
|
-
-s, --silent Silences yarn output.
|
|
514
|
-
-v, --verbose Show verbose yarn output.
|
|
515
|
-
|
|
516
|
-
DESCRIPTION
|
|
517
|
-
Installs a plugin into the CLI.
|
|
518
|
-
Can be installed from npm or a git url.
|
|
519
|
-
|
|
520
|
-
Installation of a user-installed plugin will override a core plugin.
|
|
521
|
-
|
|
522
|
-
e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
|
|
523
|
-
will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
|
|
524
|
-
the CLI without the need to patch and update the whole CLI.
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
ALIASES
|
|
528
|
-
$ sk plugins add
|
|
529
|
-
|
|
530
|
-
EXAMPLES
|
|
531
|
-
$ sk plugins:install myplugin
|
|
532
|
-
|
|
533
|
-
$ sk plugins:install https://github.com/someuser/someplugin
|
|
534
|
-
|
|
535
|
-
$ sk plugins:install someuser/someplugin
|
|
536
|
-
```
|
|
537
|
-
|
|
538
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.1.2/src/commands/plugins/install.ts)_
|
|
539
|
-
|
|
540
|
-
## `sk plugins:link PLUGIN`
|
|
541
|
-
|
|
542
|
-
Links a plugin into the CLI for development.
|
|
543
|
-
|
|
544
|
-
```
|
|
545
|
-
USAGE
|
|
546
|
-
$ sk plugins link PLUGIN
|
|
547
|
-
|
|
548
|
-
ARGUMENTS
|
|
549
|
-
PATH [default: .] path to plugin
|
|
550
|
-
|
|
551
|
-
FLAGS
|
|
552
|
-
-h, --help Show CLI help.
|
|
553
|
-
-v, --verbose
|
|
554
|
-
--[no-]install Install dependencies after linking the plugin.
|
|
555
|
-
|
|
556
|
-
DESCRIPTION
|
|
557
|
-
Links a plugin into the CLI for development.
|
|
558
|
-
Installation of a linked plugin will override a user-installed or core plugin.
|
|
559
|
-
|
|
560
|
-
e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
|
|
561
|
-
command will override the user-installed or core plugin implementation. This is useful for development work.
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
EXAMPLES
|
|
565
|
-
$ sk plugins:link myplugin
|
|
566
|
-
```
|
|
567
|
-
|
|
568
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.1.2/src/commands/plugins/link.ts)_
|
|
569
|
-
|
|
570
|
-
## `sk plugins:uninstall PLUGIN...`
|
|
571
|
-
|
|
572
|
-
Removes a plugin from the CLI.
|
|
573
|
-
|
|
574
|
-
```
|
|
575
|
-
USAGE
|
|
576
|
-
$ sk plugins remove plugins:uninstall PLUGIN...
|
|
577
|
-
|
|
578
|
-
ARGUMENTS
|
|
579
|
-
PLUGIN plugin to uninstall
|
|
580
|
-
|
|
581
|
-
FLAGS
|
|
582
|
-
-h, --help Show CLI help.
|
|
583
|
-
-v, --verbose
|
|
584
|
-
|
|
585
|
-
DESCRIPTION
|
|
586
|
-
Removes a plugin from the CLI.
|
|
587
|
-
|
|
588
|
-
ALIASES
|
|
589
|
-
$ sk plugins unlink
|
|
590
|
-
$ sk plugins remove
|
|
591
|
-
```
|
|
592
|
-
|
|
593
|
-
## `sk plugins reset`
|
|
594
|
-
|
|
595
|
-
Remove all user-installed and linked plugins.
|
|
596
|
-
|
|
597
|
-
```
|
|
598
|
-
USAGE
|
|
599
|
-
$ sk plugins reset
|
|
600
|
-
```
|
|
601
|
-
|
|
602
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.1.2/src/commands/plugins/reset.ts)_
|
|
603
|
-
|
|
604
|
-
## `sk plugins:uninstall PLUGIN...`
|
|
605
|
-
|
|
606
|
-
Removes a plugin from the CLI.
|
|
607
|
-
|
|
608
|
-
```
|
|
609
|
-
USAGE
|
|
610
|
-
$ sk plugins uninstall PLUGIN...
|
|
611
|
-
|
|
612
|
-
ARGUMENTS
|
|
613
|
-
PLUGIN plugin to uninstall
|
|
614
|
-
|
|
615
|
-
FLAGS
|
|
616
|
-
-h, --help Show CLI help.
|
|
617
|
-
-v, --verbose
|
|
618
|
-
|
|
619
|
-
DESCRIPTION
|
|
620
|
-
Removes a plugin from the CLI.
|
|
621
|
-
|
|
622
|
-
ALIASES
|
|
623
|
-
$ sk plugins unlink
|
|
624
|
-
$ sk plugins remove
|
|
625
|
-
```
|
|
626
|
-
|
|
627
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.1.2/src/commands/plugins/uninstall.ts)_
|
|
628
|
-
|
|
629
|
-
## `sk plugins:uninstall PLUGIN...`
|
|
630
|
-
|
|
631
|
-
Removes a plugin from the CLI.
|
|
632
|
-
|
|
633
|
-
```
|
|
634
|
-
USAGE
|
|
635
|
-
$ sk plugins unlink plugins:uninstall PLUGIN...
|
|
636
|
-
|
|
637
|
-
ARGUMENTS
|
|
638
|
-
PLUGIN plugin to uninstall
|
|
639
|
-
|
|
640
|
-
FLAGS
|
|
641
|
-
-h, --help Show CLI help.
|
|
642
|
-
-v, --verbose
|
|
643
|
-
|
|
644
|
-
DESCRIPTION
|
|
645
|
-
Removes a plugin from the CLI.
|
|
646
|
-
|
|
647
|
-
ALIASES
|
|
648
|
-
$ sk plugins unlink
|
|
649
|
-
$ sk plugins remove
|
|
650
|
-
```
|
|
651
|
-
|
|
652
|
-
## `sk plugins update`
|
|
653
|
-
|
|
654
|
-
Update installed plugins.
|
|
655
|
-
|
|
656
|
-
```
|
|
657
|
-
USAGE
|
|
658
|
-
$ sk plugins update [-h] [-v]
|
|
659
|
-
|
|
660
|
-
FLAGS
|
|
661
|
-
-h, --help Show CLI help.
|
|
662
|
-
-v, --verbose
|
|
663
|
-
|
|
664
|
-
DESCRIPTION
|
|
665
|
-
Update installed plugins.
|
|
666
|
-
```
|
|
667
|
-
|
|
668
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v4.1.2/src/commands/plugins/update.ts)_
|
|
669
|
-
|
|
670
400
|
## `sk pop-prewarm APP`
|
|
671
401
|
|
|
672
402
|
Pre-warm Fastly PoPs
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@speedkit/cli",
|
|
3
3
|
"description": "Speed Kit CLI",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.6.0",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Baqend.com",
|
|
7
7
|
"email": "info@baqend.com"
|
|
@@ -46,14 +46,17 @@
|
|
|
46
46
|
"commands": "./dist/commands",
|
|
47
47
|
"bin": "sk",
|
|
48
48
|
"dirname": "speed-kit-cli",
|
|
49
|
-
"version": "2.0.0",
|
|
50
49
|
"plugins": [
|
|
50
|
+
"@oclif/plugin-warn-if-update-available",
|
|
51
51
|
"@oclif/plugin-help",
|
|
52
|
-
"@oclif/plugin-plugins",
|
|
53
52
|
"@oclif/plugin-not-found",
|
|
54
53
|
"@oclif/plugin-autocomplete"
|
|
55
54
|
],
|
|
56
|
-
"topicSeparator": " "
|
|
55
|
+
"topicSeparator": " ",
|
|
56
|
+
"warn-if-update-available": {
|
|
57
|
+
"timeoutInDays": 0,
|
|
58
|
+
"frequency": 0
|
|
59
|
+
}
|
|
57
60
|
},
|
|
58
61
|
"main": "dist/index.js",
|
|
59
62
|
"types": "dist/index.d.ts",
|
|
@@ -65,7 +68,7 @@
|
|
|
65
68
|
"@oclif/plugin-autocomplete": "^3.0",
|
|
66
69
|
"@oclif/plugin-help": "^6.0",
|
|
67
70
|
"@oclif/plugin-not-found": "^3.0",
|
|
68
|
-
"@oclif/plugin-
|
|
71
|
+
"@oclif/plugin-warn-if-update-available": "^3.0",
|
|
69
72
|
"axios": "^1.4.0",
|
|
70
73
|
"baqend": "^3.4",
|
|
71
74
|
"chalk": "^4",
|