@enspirit/emb 0.8.4 → 0.10.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 +84 -32
- package/dist/src/cli/abstract/BaseCommand.d.ts +3 -0
- package/dist/src/cli/abstract/BaseCommand.js +11 -1
- package/dist/src/cli/abstract/FlavouredCommand.d.ts +1 -0
- package/dist/src/cli/abstract/FlavouredCommand.js +1 -0
- package/dist/src/cli/commands/start.d.ts +12 -0
- package/dist/src/cli/commands/start.js +30 -0
- package/dist/src/docker/compose/operations/ComposeRestartOperation.js +2 -2
- package/dist/src/docker/compose/operations/ComposeStartOperation.d.ts +13 -0
- package/dist/src/docker/compose/operations/ComposeStartOperation.js +42 -0
- package/dist/src/docker/compose/operations/ComposeUpOperation.js +2 -2
- package/dist/src/docker/compose/operations/index.d.ts +1 -0
- package/dist/src/docker/compose/operations/index.js +1 -0
- package/dist/src/docker/operations/images/PushImagesOperation.js +1 -2
- package/dist/src/monorepo/monorepo.d.ts +5 -1
- package/dist/src/monorepo/monorepo.js +9 -0
- package/dist/src/monorepo/operations/resources/BuildResourcesOperation.js +2 -2
- package/dist/src/monorepo/operations/tasks/RunTasksOperation.js +2 -4
- package/dist/src/monorepo/taskManagerFactory.d.ts +6 -1
- package/dist/src/monorepo/taskManagerFactory.js +30 -16
- package/oclif.manifest.json +146 -1
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -15,6 +15,11 @@
|
|
|
15
15
|
"allowNo": false,
|
|
16
16
|
"type": "boolean"
|
|
17
17
|
},
|
|
18
|
+
"verbose": {
|
|
19
|
+
"name": "verbose",
|
|
20
|
+
"allowNo": true,
|
|
21
|
+
"type": "boolean"
|
|
22
|
+
},
|
|
18
23
|
"force": {
|
|
19
24
|
"char": "f",
|
|
20
25
|
"description": "Force the deletion of containers & images",
|
|
@@ -55,6 +60,11 @@
|
|
|
55
60
|
"allowNo": false,
|
|
56
61
|
"type": "boolean"
|
|
57
62
|
},
|
|
63
|
+
"verbose": {
|
|
64
|
+
"name": "verbose",
|
|
65
|
+
"allowNo": true,
|
|
66
|
+
"type": "boolean"
|
|
67
|
+
},
|
|
58
68
|
"flavor": {
|
|
59
69
|
"description": "Specify the flavor to use.",
|
|
60
70
|
"name": "flavor",
|
|
@@ -70,6 +80,7 @@
|
|
|
70
80
|
"pluginAlias": "@enspirit/emb",
|
|
71
81
|
"pluginName": "@enspirit/emb",
|
|
72
82
|
"pluginType": "core",
|
|
83
|
+
"strict": true,
|
|
73
84
|
"enableJsonFlag": true,
|
|
74
85
|
"isESM": true,
|
|
75
86
|
"relativePath": [
|
|
@@ -100,6 +111,11 @@
|
|
|
100
111
|
"allowNo": false,
|
|
101
112
|
"type": "boolean"
|
|
102
113
|
},
|
|
114
|
+
"verbose": {
|
|
115
|
+
"name": "verbose",
|
|
116
|
+
"allowNo": true,
|
|
117
|
+
"type": "boolean"
|
|
118
|
+
},
|
|
103
119
|
"no-deps": {
|
|
104
120
|
"char": "f",
|
|
105
121
|
"description": "Don't restart depdendent components",
|
|
@@ -125,6 +141,49 @@
|
|
|
125
141
|
"restart.js"
|
|
126
142
|
]
|
|
127
143
|
},
|
|
144
|
+
"start": {
|
|
145
|
+
"aliases": [],
|
|
146
|
+
"args": {
|
|
147
|
+
"component": {
|
|
148
|
+
"description": "The component(s) to start",
|
|
149
|
+
"name": "component"
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"description": "Starts the whole project.",
|
|
153
|
+
"examples": [
|
|
154
|
+
"<%= config.bin %> <%= command.id %>"
|
|
155
|
+
],
|
|
156
|
+
"flags": {
|
|
157
|
+
"json": {
|
|
158
|
+
"description": "Format output as json.",
|
|
159
|
+
"helpGroup": "GLOBAL",
|
|
160
|
+
"name": "json",
|
|
161
|
+
"allowNo": false,
|
|
162
|
+
"type": "boolean"
|
|
163
|
+
},
|
|
164
|
+
"verbose": {
|
|
165
|
+
"name": "verbose",
|
|
166
|
+
"allowNo": true,
|
|
167
|
+
"type": "boolean"
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
"hasDynamicHelp": false,
|
|
171
|
+
"hiddenAliases": [],
|
|
172
|
+
"id": "start",
|
|
173
|
+
"pluginAlias": "@enspirit/emb",
|
|
174
|
+
"pluginName": "@enspirit/emb",
|
|
175
|
+
"pluginType": "core",
|
|
176
|
+
"strict": false,
|
|
177
|
+
"enableJsonFlag": true,
|
|
178
|
+
"isESM": true,
|
|
179
|
+
"relativePath": [
|
|
180
|
+
"dist",
|
|
181
|
+
"src",
|
|
182
|
+
"cli",
|
|
183
|
+
"commands",
|
|
184
|
+
"start.js"
|
|
185
|
+
]
|
|
186
|
+
},
|
|
128
187
|
"stop": {
|
|
129
188
|
"aliases": [],
|
|
130
189
|
"args": {},
|
|
@@ -140,6 +199,11 @@
|
|
|
140
199
|
"allowNo": false,
|
|
141
200
|
"type": "boolean"
|
|
142
201
|
},
|
|
202
|
+
"verbose": {
|
|
203
|
+
"name": "verbose",
|
|
204
|
+
"allowNo": true,
|
|
205
|
+
"type": "boolean"
|
|
206
|
+
},
|
|
143
207
|
"flavor": {
|
|
144
208
|
"description": "Specify the flavor to use.",
|
|
145
209
|
"name": "flavor",
|
|
@@ -155,6 +219,7 @@
|
|
|
155
219
|
"pluginAlias": "@enspirit/emb",
|
|
156
220
|
"pluginName": "@enspirit/emb",
|
|
157
221
|
"pluginType": "core",
|
|
222
|
+
"strict": true,
|
|
158
223
|
"enableJsonFlag": true,
|
|
159
224
|
"isESM": true,
|
|
160
225
|
"relativePath": [
|
|
@@ -185,6 +250,11 @@
|
|
|
185
250
|
"allowNo": false,
|
|
186
251
|
"type": "boolean"
|
|
187
252
|
},
|
|
253
|
+
"verbose": {
|
|
254
|
+
"name": "verbose",
|
|
255
|
+
"allowNo": true,
|
|
256
|
+
"type": "boolean"
|
|
257
|
+
},
|
|
188
258
|
"flavor": {
|
|
189
259
|
"description": "Specify the flavor to use.",
|
|
190
260
|
"name": "flavor",
|
|
@@ -233,6 +303,11 @@
|
|
|
233
303
|
"allowNo": false,
|
|
234
304
|
"type": "boolean"
|
|
235
305
|
},
|
|
306
|
+
"verbose": {
|
|
307
|
+
"name": "verbose",
|
|
308
|
+
"allowNo": true,
|
|
309
|
+
"type": "boolean"
|
|
310
|
+
},
|
|
236
311
|
"flavor": {
|
|
237
312
|
"description": "Specify the flavor to use.",
|
|
238
313
|
"name": "flavor",
|
|
@@ -248,6 +323,7 @@
|
|
|
248
323
|
"pluginAlias": "@enspirit/emb",
|
|
249
324
|
"pluginName": "@enspirit/emb",
|
|
250
325
|
"pluginType": "core",
|
|
326
|
+
"strict": true,
|
|
251
327
|
"enableJsonFlag": true,
|
|
252
328
|
"isESM": true,
|
|
253
329
|
"relativePath": [
|
|
@@ -275,6 +351,11 @@
|
|
|
275
351
|
"<%= config.bin %> <%= command.id %>"
|
|
276
352
|
],
|
|
277
353
|
"flags": {
|
|
354
|
+
"verbose": {
|
|
355
|
+
"name": "verbose",
|
|
356
|
+
"allowNo": true,
|
|
357
|
+
"type": "boolean"
|
|
358
|
+
},
|
|
278
359
|
"follow": {
|
|
279
360
|
"char": "f",
|
|
280
361
|
"description": "Follow log output",
|
|
@@ -317,6 +398,11 @@
|
|
|
317
398
|
"<%= config.bin %> <%= command.id %>"
|
|
318
399
|
],
|
|
319
400
|
"flags": {
|
|
401
|
+
"verbose": {
|
|
402
|
+
"name": "verbose",
|
|
403
|
+
"allowNo": true,
|
|
404
|
+
"type": "boolean"
|
|
405
|
+
},
|
|
320
406
|
"shell": {
|
|
321
407
|
"char": "s",
|
|
322
408
|
"description": "The shell to run",
|
|
@@ -360,6 +446,11 @@
|
|
|
360
446
|
"allowNo": false,
|
|
361
447
|
"type": "boolean"
|
|
362
448
|
},
|
|
449
|
+
"verbose": {
|
|
450
|
+
"name": "verbose",
|
|
451
|
+
"allowNo": true,
|
|
452
|
+
"type": "boolean"
|
|
453
|
+
},
|
|
363
454
|
"flavor": {
|
|
364
455
|
"description": "Specify the flavor to use.",
|
|
365
456
|
"name": "flavor",
|
|
@@ -375,6 +466,7 @@
|
|
|
375
466
|
"pluginAlias": "@enspirit/emb",
|
|
376
467
|
"pluginName": "@enspirit/emb",
|
|
377
468
|
"pluginType": "core",
|
|
469
|
+
"strict": true,
|
|
378
470
|
"enableJsonFlag": true,
|
|
379
471
|
"isESM": true,
|
|
380
472
|
"relativePath": [
|
|
@@ -403,6 +495,11 @@
|
|
|
403
495
|
"allowNo": false,
|
|
404
496
|
"type": "boolean"
|
|
405
497
|
},
|
|
498
|
+
"verbose": {
|
|
499
|
+
"name": "verbose",
|
|
500
|
+
"allowNo": true,
|
|
501
|
+
"type": "boolean"
|
|
502
|
+
},
|
|
406
503
|
"all": {
|
|
407
504
|
"char": "a",
|
|
408
505
|
"description": "Retun all containers. By default, only running containers are shown",
|
|
@@ -444,6 +541,11 @@
|
|
|
444
541
|
"name": "json",
|
|
445
542
|
"allowNo": false,
|
|
446
543
|
"type": "boolean"
|
|
544
|
+
},
|
|
545
|
+
"verbose": {
|
|
546
|
+
"name": "verbose",
|
|
547
|
+
"allowNo": true,
|
|
548
|
+
"type": "boolean"
|
|
447
549
|
}
|
|
448
550
|
},
|
|
449
551
|
"hasDynamicHelp": false,
|
|
@@ -479,6 +581,11 @@
|
|
|
479
581
|
"allowNo": false,
|
|
480
582
|
"type": "boolean"
|
|
481
583
|
},
|
|
584
|
+
"verbose": {
|
|
585
|
+
"name": "verbose",
|
|
586
|
+
"allowNo": true,
|
|
587
|
+
"type": "boolean"
|
|
588
|
+
},
|
|
482
589
|
"force": {
|
|
483
590
|
"char": "f",
|
|
484
591
|
"description": "Remove the image even if it is being used by stopped containers or has other tags",
|
|
@@ -521,6 +628,11 @@
|
|
|
521
628
|
"allowNo": false,
|
|
522
629
|
"type": "boolean"
|
|
523
630
|
},
|
|
631
|
+
"verbose": {
|
|
632
|
+
"name": "verbose",
|
|
633
|
+
"allowNo": true,
|
|
634
|
+
"type": "boolean"
|
|
635
|
+
},
|
|
524
636
|
"flavor": {
|
|
525
637
|
"description": "Specify the flavor to use.",
|
|
526
638
|
"name": "flavor",
|
|
@@ -544,6 +656,7 @@
|
|
|
544
656
|
"pluginAlias": "@enspirit/emb",
|
|
545
657
|
"pluginName": "@enspirit/emb",
|
|
546
658
|
"pluginType": "core",
|
|
659
|
+
"strict": true,
|
|
547
660
|
"enableJsonFlag": true,
|
|
548
661
|
"isESM": true,
|
|
549
662
|
"relativePath": [
|
|
@@ -570,6 +683,11 @@
|
|
|
570
683
|
"allowNo": false,
|
|
571
684
|
"type": "boolean"
|
|
572
685
|
},
|
|
686
|
+
"verbose": {
|
|
687
|
+
"name": "verbose",
|
|
688
|
+
"allowNo": true,
|
|
689
|
+
"type": "boolean"
|
|
690
|
+
},
|
|
573
691
|
"all": {
|
|
574
692
|
"char": "a",
|
|
575
693
|
"description": "Prune all images. When set to true all images will be pruned, not only dangling ones",
|
|
@@ -613,6 +731,11 @@
|
|
|
613
731
|
"allowNo": false,
|
|
614
732
|
"type": "boolean"
|
|
615
733
|
},
|
|
734
|
+
"verbose": {
|
|
735
|
+
"name": "verbose",
|
|
736
|
+
"allowNo": true,
|
|
737
|
+
"type": "boolean"
|
|
738
|
+
},
|
|
616
739
|
"flavor": {
|
|
617
740
|
"description": "Specify the flavor to use.",
|
|
618
741
|
"name": "flavor",
|
|
@@ -642,6 +765,7 @@
|
|
|
642
765
|
"pluginAlias": "@enspirit/emb",
|
|
643
766
|
"pluginName": "@enspirit/emb",
|
|
644
767
|
"pluginType": "core",
|
|
768
|
+
"strict": true,
|
|
645
769
|
"enableJsonFlag": true,
|
|
646
770
|
"isESM": true,
|
|
647
771
|
"relativePath": [
|
|
@@ -674,6 +798,11 @@
|
|
|
674
798
|
"allowNo": false,
|
|
675
799
|
"type": "boolean"
|
|
676
800
|
},
|
|
801
|
+
"verbose": {
|
|
802
|
+
"name": "verbose",
|
|
803
|
+
"allowNo": true,
|
|
804
|
+
"type": "boolean"
|
|
805
|
+
},
|
|
677
806
|
"flavor": {
|
|
678
807
|
"description": "Specify the flavor to use.",
|
|
679
808
|
"name": "flavor",
|
|
@@ -731,6 +860,11 @@
|
|
|
731
860
|
"allowNo": false,
|
|
732
861
|
"type": "boolean"
|
|
733
862
|
},
|
|
863
|
+
"verbose": {
|
|
864
|
+
"name": "verbose",
|
|
865
|
+
"allowNo": true,
|
|
866
|
+
"type": "boolean"
|
|
867
|
+
},
|
|
734
868
|
"flavor": {
|
|
735
869
|
"description": "Specify the flavor to use.",
|
|
736
870
|
"name": "flavor",
|
|
@@ -746,6 +880,7 @@
|
|
|
746
880
|
"pluginAlias": "@enspirit/emb",
|
|
747
881
|
"pluginName": "@enspirit/emb",
|
|
748
882
|
"pluginType": "core",
|
|
883
|
+
"strict": true,
|
|
749
884
|
"enableJsonFlag": true,
|
|
750
885
|
"isESM": true,
|
|
751
886
|
"relativePath": [
|
|
@@ -771,6 +906,11 @@
|
|
|
771
906
|
"name": "json",
|
|
772
907
|
"allowNo": false,
|
|
773
908
|
"type": "boolean"
|
|
909
|
+
},
|
|
910
|
+
"verbose": {
|
|
911
|
+
"name": "verbose",
|
|
912
|
+
"allowNo": true,
|
|
913
|
+
"type": "boolean"
|
|
774
914
|
}
|
|
775
915
|
},
|
|
776
916
|
"hasDynamicHelp": false,
|
|
@@ -814,6 +954,11 @@
|
|
|
814
954
|
"allowNo": false,
|
|
815
955
|
"type": "boolean"
|
|
816
956
|
},
|
|
957
|
+
"verbose": {
|
|
958
|
+
"name": "verbose",
|
|
959
|
+
"allowNo": true,
|
|
960
|
+
"type": "boolean"
|
|
961
|
+
},
|
|
817
962
|
"executor": {
|
|
818
963
|
"char": "x",
|
|
819
964
|
"description": "Where to run the task. (experimental!)",
|
|
@@ -853,5 +998,5 @@
|
|
|
853
998
|
]
|
|
854
999
|
}
|
|
855
1000
|
},
|
|
856
|
-
"version": "0.
|
|
1001
|
+
"version": "0.10.0"
|
|
857
1002
|
}
|