@teambit/cli 0.0.932 → 0.0.934
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/artifacts/__bit_junit.xml +1 -1
- package/artifacts/preview/teambit_harmony_cli-preview.js +1 -1
- package/artifacts/schema.json +681 -106
- package/dist/cli-parser.d.ts +4 -1
- package/dist/cli-parser.js +15 -7
- package/dist/cli-parser.js.map +1 -1
- package/dist/cli.cmd.js +2 -1
- package/dist/cli.cmd.js.map +1 -1
- package/dist/cli.main.runtime.d.ts +1 -0
- package/dist/cli.main.runtime.js +7 -1
- package/dist/cli.main.runtime.js.map +1 -1
- package/dist/command-runner.d.ts +6 -1
- package/dist/command-runner.js +17 -8
- package/dist/command-runner.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +14 -0
- package/dist/index.js.map +1 -1
- package/dist/{preview-1722309602759.js → preview-1722482331078.js} +2 -2
- package/dist/yargs-adapter.d.ts +3 -1
- package/dist/yargs-adapter.js +2 -1
- package/dist/yargs-adapter.js.map +1 -1
- package/package.json +5 -5
package/artifacts/schema.json
CHANGED
|
@@ -13,6 +13,196 @@
|
|
|
13
13
|
"character": 1
|
|
14
14
|
},
|
|
15
15
|
"exports": [
|
|
16
|
+
{
|
|
17
|
+
"__schema": "ExportSchema",
|
|
18
|
+
"location": {
|
|
19
|
+
"filePath": "index.ts",
|
|
20
|
+
"line": 2,
|
|
21
|
+
"character": 10
|
|
22
|
+
},
|
|
23
|
+
"name": "CLIParser",
|
|
24
|
+
"exportNode": {
|
|
25
|
+
"__schema": "ClassSchema",
|
|
26
|
+
"location": {
|
|
27
|
+
"filePath": "cli-parser.ts",
|
|
28
|
+
"line": 17,
|
|
29
|
+
"character": 1
|
|
30
|
+
},
|
|
31
|
+
"signature": "class CLIParser",
|
|
32
|
+
"name": "CLIParser",
|
|
33
|
+
"members": [
|
|
34
|
+
{
|
|
35
|
+
"__schema": "VariableLikeSchema",
|
|
36
|
+
"location": {
|
|
37
|
+
"filePath": "cli-parser.ts",
|
|
38
|
+
"line": 18,
|
|
39
|
+
"character": 3
|
|
40
|
+
},
|
|
41
|
+
"signature": "(property) CLIParser.parser: yargs.Argv<{}>",
|
|
42
|
+
"name": "parser",
|
|
43
|
+
"type": {
|
|
44
|
+
"__schema": "InferenceTypeSchema",
|
|
45
|
+
"location": {
|
|
46
|
+
"filePath": "cli-parser.ts",
|
|
47
|
+
"line": 18,
|
|
48
|
+
"character": 3
|
|
49
|
+
},
|
|
50
|
+
"type": "yargs.Argv<{}>"
|
|
51
|
+
},
|
|
52
|
+
"isOptional": true,
|
|
53
|
+
"defaultValue": "yargs"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"__schema": "ConstructorSchema",
|
|
57
|
+
"location": {
|
|
58
|
+
"filePath": "cli-parser.ts",
|
|
59
|
+
"line": 20,
|
|
60
|
+
"character": 3
|
|
61
|
+
},
|
|
62
|
+
"signature": "constructor CLIParser(commands: Command[], groups: GroupsType, onCommandStartSlot: OnCommandStartSlot): CLIParser",
|
|
63
|
+
"name": "constructor",
|
|
64
|
+
"params": [
|
|
65
|
+
{
|
|
66
|
+
"__schema": "ParameterSchema",
|
|
67
|
+
"location": {
|
|
68
|
+
"filePath": "cli-parser.ts",
|
|
69
|
+
"line": 21,
|
|
70
|
+
"character": 5
|
|
71
|
+
},
|
|
72
|
+
"name": "commands",
|
|
73
|
+
"type": {
|
|
74
|
+
"__schema": "TypeArraySchema",
|
|
75
|
+
"location": {
|
|
76
|
+
"filePath": "cli-parser.ts",
|
|
77
|
+
"line": 21,
|
|
78
|
+
"character": 23
|
|
79
|
+
},
|
|
80
|
+
"type": {
|
|
81
|
+
"__schema": "TypeRefSchema",
|
|
82
|
+
"location": {
|
|
83
|
+
"filePath": "cli-parser.ts",
|
|
84
|
+
"line": 21,
|
|
85
|
+
"character": 23
|
|
86
|
+
},
|
|
87
|
+
"name": "Command"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
"isOptional": false,
|
|
91
|
+
"isSpread": false
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"__schema": "ParameterSchema",
|
|
95
|
+
"location": {
|
|
96
|
+
"filePath": "cli-parser.ts",
|
|
97
|
+
"line": 22,
|
|
98
|
+
"character": 5
|
|
99
|
+
},
|
|
100
|
+
"name": "groups",
|
|
101
|
+
"type": {
|
|
102
|
+
"__schema": "TypeRefSchema",
|
|
103
|
+
"location": {
|
|
104
|
+
"filePath": "cli-parser.ts",
|
|
105
|
+
"line": 22,
|
|
106
|
+
"character": 21
|
|
107
|
+
},
|
|
108
|
+
"name": "GroupsType"
|
|
109
|
+
},
|
|
110
|
+
"isOptional": false,
|
|
111
|
+
"isSpread": false
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"__schema": "ParameterSchema",
|
|
115
|
+
"location": {
|
|
116
|
+
"filePath": "cli-parser.ts",
|
|
117
|
+
"line": 23,
|
|
118
|
+
"character": 5
|
|
119
|
+
},
|
|
120
|
+
"name": "onCommandStartSlot",
|
|
121
|
+
"type": {
|
|
122
|
+
"__schema": "TypeRefSchema",
|
|
123
|
+
"location": {
|
|
124
|
+
"filePath": "cli-parser.ts",
|
|
125
|
+
"line": 23,
|
|
126
|
+
"character": 33
|
|
127
|
+
},
|
|
128
|
+
"name": "OnCommandStartSlot"
|
|
129
|
+
},
|
|
130
|
+
"isOptional": false,
|
|
131
|
+
"isSpread": false
|
|
132
|
+
}
|
|
133
|
+
],
|
|
134
|
+
"returnType": {
|
|
135
|
+
"__schema": "ThisTypeSchema",
|
|
136
|
+
"location": {
|
|
137
|
+
"filePath": "cli-parser.ts",
|
|
138
|
+
"line": 17,
|
|
139
|
+
"character": 1
|
|
140
|
+
},
|
|
141
|
+
"name": "CLIParser"
|
|
142
|
+
},
|
|
143
|
+
"modifiers": []
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"__schema": "FunctionLikeSchema",
|
|
147
|
+
"location": {
|
|
148
|
+
"filePath": "cli-parser.ts",
|
|
149
|
+
"line": 26,
|
|
150
|
+
"character": 3
|
|
151
|
+
},
|
|
152
|
+
"signature": "(method) CLIParser.parse(args?: string[]): Promise<CommandRunner>",
|
|
153
|
+
"name": "parse",
|
|
154
|
+
"params": [
|
|
155
|
+
{
|
|
156
|
+
"__schema": "ParameterSchema",
|
|
157
|
+
"location": {
|
|
158
|
+
"filePath": "cli-parser.ts",
|
|
159
|
+
"line": 26,
|
|
160
|
+
"character": 15
|
|
161
|
+
},
|
|
162
|
+
"name": "args",
|
|
163
|
+
"type": {
|
|
164
|
+
"__schema": "InferenceTypeSchema",
|
|
165
|
+
"location": {
|
|
166
|
+
"filePath": "cli-parser.ts",
|
|
167
|
+
"line": 26,
|
|
168
|
+
"character": 15
|
|
169
|
+
},
|
|
170
|
+
"type": "string[]"
|
|
171
|
+
},
|
|
172
|
+
"isOptional": true,
|
|
173
|
+
"defaultValue": "process.argv.slice(2)",
|
|
174
|
+
"isSpread": false
|
|
175
|
+
}
|
|
176
|
+
],
|
|
177
|
+
"returnType": {
|
|
178
|
+
"__schema": "TypeRefSchema",
|
|
179
|
+
"location": {
|
|
180
|
+
"filePath": "cli-parser.ts",
|
|
181
|
+
"line": 26,
|
|
182
|
+
"character": 46
|
|
183
|
+
},
|
|
184
|
+
"name": "Promise",
|
|
185
|
+
"typeArgs": [
|
|
186
|
+
{
|
|
187
|
+
"__schema": "TypeRefSchema",
|
|
188
|
+
"location": {
|
|
189
|
+
"filePath": "cli-parser.ts",
|
|
190
|
+
"line": 26,
|
|
191
|
+
"character": 54
|
|
192
|
+
},
|
|
193
|
+
"name": "CommandRunner"
|
|
194
|
+
}
|
|
195
|
+
]
|
|
196
|
+
},
|
|
197
|
+
"modifiers": [
|
|
198
|
+
"async"
|
|
199
|
+
]
|
|
200
|
+
}
|
|
201
|
+
],
|
|
202
|
+
"extendsNodes": [],
|
|
203
|
+
"implementNodes": []
|
|
204
|
+
}
|
|
205
|
+
},
|
|
16
206
|
{
|
|
17
207
|
"__schema": "ExportSchema",
|
|
18
208
|
"location": {
|
|
@@ -376,14 +566,75 @@
|
|
|
376
566
|
"__schema": "FunctionLikeSchema",
|
|
377
567
|
"location": {
|
|
378
568
|
"filePath": "cli.main.runtime.ts",
|
|
379
|
-
"line":
|
|
569
|
+
"line": 77,
|
|
570
|
+
"character": 3
|
|
571
|
+
},
|
|
572
|
+
"signature": "(method) CLIMain.getCommandByNameOrAlias(name: string): Command | undefined",
|
|
573
|
+
"name": "getCommandByNameOrAlias",
|
|
574
|
+
"params": [
|
|
575
|
+
{
|
|
576
|
+
"__schema": "ParameterSchema",
|
|
577
|
+
"location": {
|
|
578
|
+
"filePath": "cli.main.runtime.ts",
|
|
579
|
+
"line": 77,
|
|
580
|
+
"character": 27
|
|
581
|
+
},
|
|
582
|
+
"name": "name",
|
|
583
|
+
"type": {
|
|
584
|
+
"__schema": "KeywordTypeSchema",
|
|
585
|
+
"location": {
|
|
586
|
+
"filePath": "cli.main.runtime.ts",
|
|
587
|
+
"line": 77,
|
|
588
|
+
"character": 33
|
|
589
|
+
},
|
|
590
|
+
"name": "string"
|
|
591
|
+
},
|
|
592
|
+
"isOptional": false,
|
|
593
|
+
"isSpread": false
|
|
594
|
+
}
|
|
595
|
+
],
|
|
596
|
+
"returnType": {
|
|
597
|
+
"__schema": "TypeUnionSchema",
|
|
598
|
+
"location": {
|
|
599
|
+
"filePath": "cli.main.runtime.ts",
|
|
600
|
+
"line": 77,
|
|
601
|
+
"character": 42
|
|
602
|
+
},
|
|
603
|
+
"types": [
|
|
604
|
+
{
|
|
605
|
+
"__schema": "TypeRefSchema",
|
|
606
|
+
"location": {
|
|
607
|
+
"filePath": "cli.main.runtime.ts",
|
|
608
|
+
"line": 77,
|
|
609
|
+
"character": 42
|
|
610
|
+
},
|
|
611
|
+
"name": "Command"
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
"__schema": "KeywordTypeSchema",
|
|
615
|
+
"location": {
|
|
616
|
+
"filePath": "cli.main.runtime.ts",
|
|
617
|
+
"line": 77,
|
|
618
|
+
"character": 52
|
|
619
|
+
},
|
|
620
|
+
"name": "undefined"
|
|
621
|
+
}
|
|
622
|
+
]
|
|
623
|
+
},
|
|
624
|
+
"modifiers": []
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
"__schema": "FunctionLikeSchema",
|
|
628
|
+
"location": {
|
|
629
|
+
"filePath": "cli.main.runtime.ts",
|
|
630
|
+
"line": 89,
|
|
380
631
|
"character": 3
|
|
381
632
|
},
|
|
382
633
|
"doc": {
|
|
383
634
|
"__schema": "DocSchema",
|
|
384
635
|
"location": {
|
|
385
636
|
"filePath": "cli.main.runtime.ts",
|
|
386
|
-
"line":
|
|
637
|
+
"line": 83,
|
|
387
638
|
"character": 3
|
|
388
639
|
},
|
|
389
640
|
"raw": "/**\n * when running `bit help`, commands are grouped by categories.\n * this method helps registering a new group by providing its name and a description.\n * the name is what needs to be assigned to the `group` property of the Command interface.\n * the description is what shown in the `bit help` output.\n */",
|
|
@@ -397,7 +648,7 @@
|
|
|
397
648
|
"__schema": "ParameterSchema",
|
|
398
649
|
"location": {
|
|
399
650
|
"filePath": "cli.main.runtime.ts",
|
|
400
|
-
"line":
|
|
651
|
+
"line": 89,
|
|
401
652
|
"character": 17
|
|
402
653
|
},
|
|
403
654
|
"name": "name",
|
|
@@ -405,7 +656,7 @@
|
|
|
405
656
|
"__schema": "KeywordTypeSchema",
|
|
406
657
|
"location": {
|
|
407
658
|
"filePath": "cli.main.runtime.ts",
|
|
408
|
-
"line":
|
|
659
|
+
"line": 89,
|
|
409
660
|
"character": 23
|
|
410
661
|
},
|
|
411
662
|
"name": "string"
|
|
@@ -417,7 +668,7 @@
|
|
|
417
668
|
"__schema": "ParameterSchema",
|
|
418
669
|
"location": {
|
|
419
670
|
"filePath": "cli.main.runtime.ts",
|
|
420
|
-
"line":
|
|
671
|
+
"line": 89,
|
|
421
672
|
"character": 31
|
|
422
673
|
},
|
|
423
674
|
"name": "description",
|
|
@@ -425,7 +676,7 @@
|
|
|
425
676
|
"__schema": "KeywordTypeSchema",
|
|
426
677
|
"location": {
|
|
427
678
|
"filePath": "cli.main.runtime.ts",
|
|
428
|
-
"line":
|
|
679
|
+
"line": 89,
|
|
429
680
|
"character": 44
|
|
430
681
|
},
|
|
431
682
|
"name": "string"
|
|
@@ -438,7 +689,7 @@
|
|
|
438
689
|
"__schema": "InferenceTypeSchema",
|
|
439
690
|
"location": {
|
|
440
691
|
"filePath": "cli.main.runtime.ts",
|
|
441
|
-
"line":
|
|
692
|
+
"line": 89,
|
|
442
693
|
"character": 3
|
|
443
694
|
},
|
|
444
695
|
"type": "void"
|
|
@@ -449,14 +700,14 @@
|
|
|
449
700
|
"__schema": "FunctionLikeSchema",
|
|
450
701
|
"location": {
|
|
451
702
|
"filePath": "cli.main.runtime.ts",
|
|
452
|
-
"line":
|
|
703
|
+
"line": 100,
|
|
453
704
|
"character": 3
|
|
454
705
|
},
|
|
455
706
|
"doc": {
|
|
456
707
|
"__schema": "DocSchema",
|
|
457
708
|
"location": {
|
|
458
709
|
"filePath": "cli.main.runtime.ts",
|
|
459
|
-
"line":
|
|
710
|
+
"line": 97,
|
|
460
711
|
"character": 3
|
|
461
712
|
},
|
|
462
713
|
"raw": "/**\n * onStart is when bootstrapping the CLI. (it happens before onCommandStart)\n */",
|
|
@@ -470,7 +721,7 @@
|
|
|
470
721
|
"__schema": "ParameterSchema",
|
|
471
722
|
"location": {
|
|
472
723
|
"filePath": "cli.main.runtime.ts",
|
|
473
|
-
"line":
|
|
724
|
+
"line": 100,
|
|
474
725
|
"character": 19
|
|
475
726
|
},
|
|
476
727
|
"name": "onStartFn",
|
|
@@ -478,7 +729,7 @@
|
|
|
478
729
|
"__schema": "TypeRefSchema",
|
|
479
730
|
"location": {
|
|
480
731
|
"filePath": "cli.main.runtime.ts",
|
|
481
|
-
"line":
|
|
732
|
+
"line": 100,
|
|
482
733
|
"character": 30
|
|
483
734
|
},
|
|
484
735
|
"name": "OnStart"
|
|
@@ -491,7 +742,7 @@
|
|
|
491
742
|
"__schema": "TypeRefSchema",
|
|
492
743
|
"location": {
|
|
493
744
|
"filePath": "cli.main.runtime.ts",
|
|
494
|
-
"line":
|
|
745
|
+
"line": 100,
|
|
495
746
|
"character": 3
|
|
496
747
|
},
|
|
497
748
|
"name": "CLIMain"
|
|
@@ -502,14 +753,14 @@
|
|
|
502
753
|
"__schema": "FunctionLikeSchema",
|
|
503
754
|
"location": {
|
|
504
755
|
"filePath": "cli.main.runtime.ts",
|
|
505
|
-
"line":
|
|
756
|
+
"line": 109,
|
|
506
757
|
"character": 3
|
|
507
758
|
},
|
|
508
759
|
"doc": {
|
|
509
760
|
"__schema": "DocSchema",
|
|
510
761
|
"location": {
|
|
511
762
|
"filePath": "cli.main.runtime.ts",
|
|
512
|
-
"line":
|
|
763
|
+
"line": 105,
|
|
513
764
|
"character": 3
|
|
514
765
|
},
|
|
515
766
|
"raw": "/**\n * onCommandStart is when a command is about to start and we have the command object and the parsed args and flags\n * already. (it happens after onStart)\n */",
|
|
@@ -523,7 +774,7 @@
|
|
|
523
774
|
"__schema": "ParameterSchema",
|
|
524
775
|
"location": {
|
|
525
776
|
"filePath": "cli.main.runtime.ts",
|
|
526
|
-
"line":
|
|
777
|
+
"line": 109,
|
|
527
778
|
"character": 26
|
|
528
779
|
},
|
|
529
780
|
"name": "onCommandStartFn",
|
|
@@ -531,7 +782,7 @@
|
|
|
531
782
|
"__schema": "TypeRefSchema",
|
|
532
783
|
"location": {
|
|
533
784
|
"filePath": "cli.main.runtime.ts",
|
|
534
|
-
"line":
|
|
785
|
+
"line": 109,
|
|
535
786
|
"character": 44
|
|
536
787
|
},
|
|
537
788
|
"name": "OnCommandStart"
|
|
@@ -544,7 +795,7 @@
|
|
|
544
795
|
"__schema": "TypeRefSchema",
|
|
545
796
|
"location": {
|
|
546
797
|
"filePath": "cli.main.runtime.ts",
|
|
547
|
-
"line":
|
|
798
|
+
"line": 109,
|
|
548
799
|
"character": 3
|
|
549
800
|
},
|
|
550
801
|
"name": "CLIMain"
|
|
@@ -555,14 +806,14 @@
|
|
|
555
806
|
"__schema": "FunctionLikeSchema",
|
|
556
807
|
"location": {
|
|
557
808
|
"filePath": "cli.main.runtime.ts",
|
|
558
|
-
"line":
|
|
809
|
+
"line": 129,
|
|
559
810
|
"character": 3
|
|
560
811
|
},
|
|
561
812
|
"doc": {
|
|
562
813
|
"__schema": "DocSchema",
|
|
563
814
|
"location": {
|
|
564
815
|
"filePath": "cli.main.runtime.ts",
|
|
565
|
-
"line":
|
|
816
|
+
"line": 114,
|
|
566
817
|
"character": 3
|
|
567
818
|
},
|
|
568
819
|
"raw": "/**\n * This will register a function to be called before the process exits.\n * This will run only for \"regular\" exits\n * e.g.\n * yes - command run and finished successfully\n * yes - command run and failed gracefully (code 1)\n * not SIGKILL (kill -9)\n * not SIGINT (Ctrl+C)\n * not SIGTERM (kill)\n * not uncaughtException\n * not unhandledRejection\n *\n * @param onBeforeExitFn\n * @returns\n */",
|
|
@@ -572,7 +823,7 @@
|
|
|
572
823
|
"__schema": "PropertyLikeTagSchema",
|
|
573
824
|
"location": {
|
|
574
825
|
"filePath": "cli.main.runtime.ts",
|
|
575
|
-
"line":
|
|
826
|
+
"line": 126,
|
|
576
827
|
"character": 6
|
|
577
828
|
},
|
|
578
829
|
"name": "onBeforeExitFn",
|
|
@@ -582,7 +833,7 @@
|
|
|
582
833
|
"__schema": "ReturnTagSchema",
|
|
583
834
|
"location": {
|
|
584
835
|
"filePath": "cli.main.runtime.ts",
|
|
585
|
-
"line":
|
|
836
|
+
"line": 127,
|
|
586
837
|
"character": 6
|
|
587
838
|
},
|
|
588
839
|
"tagName": "return"
|
|
@@ -596,7 +847,7 @@
|
|
|
596
847
|
"__schema": "ParameterSchema",
|
|
597
848
|
"location": {
|
|
598
849
|
"filePath": "cli.main.runtime.ts",
|
|
599
|
-
"line":
|
|
850
|
+
"line": 129,
|
|
600
851
|
"character": 24
|
|
601
852
|
},
|
|
602
853
|
"name": "onBeforeExitFn",
|
|
@@ -604,7 +855,7 @@
|
|
|
604
855
|
"__schema": "TypeRefSchema",
|
|
605
856
|
"location": {
|
|
606
857
|
"filePath": "cli.main.runtime.ts",
|
|
607
|
-
"line":
|
|
858
|
+
"line": 129,
|
|
608
859
|
"character": 40
|
|
609
860
|
},
|
|
610
861
|
"name": "OnBeforeExitFn"
|
|
@@ -617,7 +868,7 @@
|
|
|
617
868
|
"__schema": "TypeRefSchema",
|
|
618
869
|
"location": {
|
|
619
870
|
"filePath": "cli.main.runtime.ts",
|
|
620
|
-
"line":
|
|
871
|
+
"line": 129,
|
|
621
872
|
"character": 3
|
|
622
873
|
},
|
|
623
874
|
"name": "CLIMain"
|
|
@@ -628,14 +879,14 @@
|
|
|
628
879
|
"__schema": "FunctionLikeSchema",
|
|
629
880
|
"location": {
|
|
630
881
|
"filePath": "cli.main.runtime.ts",
|
|
631
|
-
"line":
|
|
882
|
+
"line": 138,
|
|
632
883
|
"character": 3
|
|
633
884
|
},
|
|
634
885
|
"doc": {
|
|
635
886
|
"__schema": "DocSchema",
|
|
636
887
|
"location": {
|
|
637
888
|
"filePath": "cli.main.runtime.ts",
|
|
638
|
-
"line":
|
|
889
|
+
"line": 135,
|
|
639
890
|
"character": 3
|
|
640
891
|
},
|
|
641
892
|
"raw": "/**\n * execute commands registered to this aspect.\n */",
|
|
@@ -649,7 +900,7 @@
|
|
|
649
900
|
"__schema": "ParameterSchema",
|
|
650
901
|
"location": {
|
|
651
902
|
"filePath": "cli.main.runtime.ts",
|
|
652
|
-
"line":
|
|
903
|
+
"line": 138,
|
|
653
904
|
"character": 13
|
|
654
905
|
},
|
|
655
906
|
"name": "hasWorkspace",
|
|
@@ -657,7 +908,7 @@
|
|
|
657
908
|
"__schema": "KeywordTypeSchema",
|
|
658
909
|
"location": {
|
|
659
910
|
"filePath": "cli.main.runtime.ts",
|
|
660
|
-
"line":
|
|
911
|
+
"line": 138,
|
|
661
912
|
"character": 27
|
|
662
913
|
},
|
|
663
914
|
"name": "boolean"
|
|
@@ -670,7 +921,7 @@
|
|
|
670
921
|
"__schema": "InferenceTypeSchema",
|
|
671
922
|
"location": {
|
|
672
923
|
"filePath": "cli.main.runtime.ts",
|
|
673
|
-
"line":
|
|
924
|
+
"line": 138,
|
|
674
925
|
"character": 3
|
|
675
926
|
},
|
|
676
927
|
"type": "Promise<void>"
|
|
@@ -683,7 +934,7 @@
|
|
|
683
934
|
"__schema": "VariableLikeSchema",
|
|
684
935
|
"location": {
|
|
685
936
|
"filePath": "cli.main.runtime.ts",
|
|
686
|
-
"line":
|
|
937
|
+
"line": 172,
|
|
687
938
|
"character": 3
|
|
688
939
|
},
|
|
689
940
|
"signature": "(property) CLIMain.dependencies: Aspect[]",
|
|
@@ -692,7 +943,7 @@
|
|
|
692
943
|
"__schema": "InferenceTypeSchema",
|
|
693
944
|
"location": {
|
|
694
945
|
"filePath": "cli.main.runtime.ts",
|
|
695
|
-
"line":
|
|
946
|
+
"line": 172,
|
|
696
947
|
"character": 3
|
|
697
948
|
},
|
|
698
949
|
"type": "Aspect[]"
|
|
@@ -704,7 +955,7 @@
|
|
|
704
955
|
"__schema": "VariableLikeSchema",
|
|
705
956
|
"location": {
|
|
706
957
|
"filePath": "cli.main.runtime.ts",
|
|
707
|
-
"line":
|
|
958
|
+
"line": 173,
|
|
708
959
|
"character": 3
|
|
709
960
|
},
|
|
710
961
|
"signature": "(property) CLIMain.runtime: RuntimeDefinition",
|
|
@@ -713,7 +964,7 @@
|
|
|
713
964
|
"__schema": "InferenceTypeSchema",
|
|
714
965
|
"location": {
|
|
715
966
|
"filePath": "cli.main.runtime.ts",
|
|
716
|
-
"line":
|
|
967
|
+
"line": 173,
|
|
717
968
|
"character": 3
|
|
718
969
|
},
|
|
719
970
|
"type": "RuntimeDefinition"
|
|
@@ -725,7 +976,7 @@
|
|
|
725
976
|
"__schema": "VariableLikeSchema",
|
|
726
977
|
"location": {
|
|
727
978
|
"filePath": "cli.main.runtime.ts",
|
|
728
|
-
"line":
|
|
979
|
+
"line": 174,
|
|
729
980
|
"character": 3
|
|
730
981
|
},
|
|
731
982
|
"signature": "(property) CLIMain.slots: (((registerFn: () => string) => SlotRegistry<CommandList>) | ((registerFn: () => string) => SlotRegistry<OnStart>) | ((registerFn: () => string) => SlotRegistry<...>))[]",
|
|
@@ -734,7 +985,7 @@
|
|
|
734
985
|
"__schema": "InferenceTypeSchema",
|
|
735
986
|
"location": {
|
|
736
987
|
"filePath": "cli.main.runtime.ts",
|
|
737
|
-
"line":
|
|
988
|
+
"line": 174,
|
|
738
989
|
"character": 3
|
|
739
990
|
},
|
|
740
991
|
"type": "(((registerFn: () => string) => SlotRegistry<CommandList>) | ((registerFn: () => string) => SlotRegistry<OnStart>) | ((registerFn: () => string) => SlotRegistry<...>))[]"
|
|
@@ -746,7 +997,7 @@
|
|
|
746
997
|
"__schema": "FunctionLikeSchema",
|
|
747
998
|
"location": {
|
|
748
999
|
"filePath": "cli.main.runtime.ts",
|
|
749
|
-
"line":
|
|
1000
|
+
"line": 181,
|
|
750
1001
|
"character": 3
|
|
751
1002
|
},
|
|
752
1003
|
"signature": "(method) CLIMain.provider([loggerMain]: [LoggerMain], config: any, [commandsSlot, onStartSlot, onCommandStartSlot, onBeforeExitSlot]: [\n CommandsSlot,\n OnStartSlot,\n OnCommandStartSlot,\n OnBeforeExitSlot\n]): Promise<CLIMain>",
|
|
@@ -756,7 +1007,7 @@
|
|
|
756
1007
|
"__schema": "ParameterSchema",
|
|
757
1008
|
"location": {
|
|
758
1009
|
"filePath": "cli.main.runtime.ts",
|
|
759
|
-
"line":
|
|
1010
|
+
"line": 182,
|
|
760
1011
|
"character": 5
|
|
761
1012
|
},
|
|
762
1013
|
"name": "[ loggerMain ]",
|
|
@@ -764,7 +1015,7 @@
|
|
|
764
1015
|
"__schema": "TupleTypeSchema",
|
|
765
1016
|
"location": {
|
|
766
1017
|
"filePath": "cli.main.runtime.ts",
|
|
767
|
-
"line":
|
|
1018
|
+
"line": 182,
|
|
768
1019
|
"character": 19
|
|
769
1020
|
},
|
|
770
1021
|
"elements": [
|
|
@@ -772,7 +1023,7 @@
|
|
|
772
1023
|
"__schema": "TypeRefSchema",
|
|
773
1024
|
"location": {
|
|
774
1025
|
"filePath": "cli.main.runtime.ts",
|
|
775
|
-
"line":
|
|
1026
|
+
"line": 182,
|
|
776
1027
|
"character": 20
|
|
777
1028
|
},
|
|
778
1029
|
"name": "LoggerMain"
|
|
@@ -786,7 +1037,7 @@
|
|
|
786
1037
|
"__schema": "ParameterSchema",
|
|
787
1038
|
"location": {
|
|
788
1039
|
"filePath": "cli.main.runtime.ts",
|
|
789
|
-
"line":
|
|
1040
|
+
"line": 183,
|
|
790
1041
|
"character": 5
|
|
791
1042
|
},
|
|
792
1043
|
"name": "config",
|
|
@@ -794,7 +1045,7 @@
|
|
|
794
1045
|
"__schema": "InferenceTypeSchema",
|
|
795
1046
|
"location": {
|
|
796
1047
|
"filePath": "cli.main.runtime.ts",
|
|
797
|
-
"line":
|
|
1048
|
+
"line": 183,
|
|
798
1049
|
"character": 5
|
|
799
1050
|
},
|
|
800
1051
|
"type": "any"
|
|
@@ -806,7 +1057,7 @@
|
|
|
806
1057
|
"__schema": "ParameterSchema",
|
|
807
1058
|
"location": {
|
|
808
1059
|
"filePath": "cli.main.runtime.ts",
|
|
809
|
-
"line":
|
|
1060
|
+
"line": 184,
|
|
810
1061
|
"character": 5
|
|
811
1062
|
},
|
|
812
1063
|
"name": "[ commandsSlot, onStartSlot, onCommandStartSlot, onBeforeExitSlot ]",
|
|
@@ -814,7 +1065,7 @@
|
|
|
814
1065
|
"__schema": "TupleTypeSchema",
|
|
815
1066
|
"location": {
|
|
816
1067
|
"filePath": "cli.main.runtime.ts",
|
|
817
|
-
"line":
|
|
1068
|
+
"line": 184,
|
|
818
1069
|
"character": 72
|
|
819
1070
|
},
|
|
820
1071
|
"elements": [
|
|
@@ -822,7 +1073,7 @@
|
|
|
822
1073
|
"__schema": "TypeRefSchema",
|
|
823
1074
|
"location": {
|
|
824
1075
|
"filePath": "cli.main.runtime.ts",
|
|
825
|
-
"line":
|
|
1076
|
+
"line": 185,
|
|
826
1077
|
"character": 7
|
|
827
1078
|
},
|
|
828
1079
|
"name": "CommandsSlot"
|
|
@@ -831,7 +1082,7 @@
|
|
|
831
1082
|
"__schema": "TypeRefSchema",
|
|
832
1083
|
"location": {
|
|
833
1084
|
"filePath": "cli.main.runtime.ts",
|
|
834
|
-
"line":
|
|
1085
|
+
"line": 186,
|
|
835
1086
|
"character": 7
|
|
836
1087
|
},
|
|
837
1088
|
"name": "OnStartSlot"
|
|
@@ -840,7 +1091,7 @@
|
|
|
840
1091
|
"__schema": "TypeRefSchema",
|
|
841
1092
|
"location": {
|
|
842
1093
|
"filePath": "cli.main.runtime.ts",
|
|
843
|
-
"line":
|
|
1094
|
+
"line": 187,
|
|
844
1095
|
"character": 7
|
|
845
1096
|
},
|
|
846
1097
|
"name": "OnCommandStartSlot"
|
|
@@ -849,7 +1100,7 @@
|
|
|
849
1100
|
"__schema": "TypeRefSchema",
|
|
850
1101
|
"location": {
|
|
851
1102
|
"filePath": "cli.main.runtime.ts",
|
|
852
|
-
"line":
|
|
1103
|
+
"line": 188,
|
|
853
1104
|
"character": 7
|
|
854
1105
|
},
|
|
855
1106
|
"name": "OnBeforeExitSlot"
|
|
@@ -864,7 +1115,7 @@
|
|
|
864
1115
|
"__schema": "InferenceTypeSchema",
|
|
865
1116
|
"location": {
|
|
866
1117
|
"filePath": "cli.main.runtime.ts",
|
|
867
|
-
"line":
|
|
1118
|
+
"line": 181,
|
|
868
1119
|
"character": 3
|
|
869
1120
|
},
|
|
870
1121
|
"type": "Promise<CLIMain>"
|
|
@@ -1331,7 +1582,7 @@
|
|
|
1331
1582
|
"_legacy": {
|
|
1332
1583
|
"scope": "teambit.harmony",
|
|
1333
1584
|
"name": "cli",
|
|
1334
|
-
"version": "0.0.
|
|
1585
|
+
"version": "0.0.934"
|
|
1335
1586
|
},
|
|
1336
1587
|
"_scope": "teambit.harmony"
|
|
1337
1588
|
}
|
|
@@ -1451,6 +1702,269 @@
|
|
|
1451
1702
|
"internals": []
|
|
1452
1703
|
},
|
|
1453
1704
|
"internals": [
|
|
1705
|
+
{
|
|
1706
|
+
"__schema": "ModuleSchema",
|
|
1707
|
+
"location": {
|
|
1708
|
+
"filePath": "cli-parser.ts",
|
|
1709
|
+
"line": 1,
|
|
1710
|
+
"character": 1
|
|
1711
|
+
},
|
|
1712
|
+
"exports": [
|
|
1713
|
+
{
|
|
1714
|
+
"__schema": "ClassSchema",
|
|
1715
|
+
"location": {
|
|
1716
|
+
"filePath": "cli-parser.ts",
|
|
1717
|
+
"line": 17,
|
|
1718
|
+
"character": 1
|
|
1719
|
+
},
|
|
1720
|
+
"signature": "class CLIParser",
|
|
1721
|
+
"name": "CLIParser",
|
|
1722
|
+
"members": [
|
|
1723
|
+
{
|
|
1724
|
+
"__schema": "VariableLikeSchema",
|
|
1725
|
+
"location": {
|
|
1726
|
+
"filePath": "cli-parser.ts",
|
|
1727
|
+
"line": 18,
|
|
1728
|
+
"character": 3
|
|
1729
|
+
},
|
|
1730
|
+
"signature": "(property) CLIParser.parser: yargs.Argv<{}>",
|
|
1731
|
+
"name": "parser",
|
|
1732
|
+
"type": {
|
|
1733
|
+
"__schema": "InferenceTypeSchema",
|
|
1734
|
+
"location": {
|
|
1735
|
+
"filePath": "cli-parser.ts",
|
|
1736
|
+
"line": 18,
|
|
1737
|
+
"character": 3
|
|
1738
|
+
},
|
|
1739
|
+
"type": "yargs.Argv<{}>"
|
|
1740
|
+
},
|
|
1741
|
+
"isOptional": true,
|
|
1742
|
+
"defaultValue": "yargs"
|
|
1743
|
+
},
|
|
1744
|
+
{
|
|
1745
|
+
"__schema": "ConstructorSchema",
|
|
1746
|
+
"location": {
|
|
1747
|
+
"filePath": "cli-parser.ts",
|
|
1748
|
+
"line": 20,
|
|
1749
|
+
"character": 3
|
|
1750
|
+
},
|
|
1751
|
+
"signature": "constructor CLIParser(commands: Command[], groups: GroupsType, onCommandStartSlot: OnCommandStartSlot): CLIParser",
|
|
1752
|
+
"name": "constructor",
|
|
1753
|
+
"params": [
|
|
1754
|
+
{
|
|
1755
|
+
"__schema": "ParameterSchema",
|
|
1756
|
+
"location": {
|
|
1757
|
+
"filePath": "cli-parser.ts",
|
|
1758
|
+
"line": 21,
|
|
1759
|
+
"character": 5
|
|
1760
|
+
},
|
|
1761
|
+
"name": "commands",
|
|
1762
|
+
"type": {
|
|
1763
|
+
"__schema": "TypeArraySchema",
|
|
1764
|
+
"location": {
|
|
1765
|
+
"filePath": "cli-parser.ts",
|
|
1766
|
+
"line": 21,
|
|
1767
|
+
"character": 23
|
|
1768
|
+
},
|
|
1769
|
+
"type": {
|
|
1770
|
+
"__schema": "TypeRefSchema",
|
|
1771
|
+
"location": {
|
|
1772
|
+
"filePath": "cli-parser.ts",
|
|
1773
|
+
"line": 21,
|
|
1774
|
+
"character": 23
|
|
1775
|
+
},
|
|
1776
|
+
"name": "Command"
|
|
1777
|
+
}
|
|
1778
|
+
},
|
|
1779
|
+
"isOptional": false,
|
|
1780
|
+
"isSpread": false
|
|
1781
|
+
},
|
|
1782
|
+
{
|
|
1783
|
+
"__schema": "ParameterSchema",
|
|
1784
|
+
"location": {
|
|
1785
|
+
"filePath": "cli-parser.ts",
|
|
1786
|
+
"line": 22,
|
|
1787
|
+
"character": 5
|
|
1788
|
+
},
|
|
1789
|
+
"name": "groups",
|
|
1790
|
+
"type": {
|
|
1791
|
+
"__schema": "TypeRefSchema",
|
|
1792
|
+
"location": {
|
|
1793
|
+
"filePath": "cli-parser.ts",
|
|
1794
|
+
"line": 22,
|
|
1795
|
+
"character": 21
|
|
1796
|
+
},
|
|
1797
|
+
"name": "GroupsType"
|
|
1798
|
+
},
|
|
1799
|
+
"isOptional": false,
|
|
1800
|
+
"isSpread": false
|
|
1801
|
+
},
|
|
1802
|
+
{
|
|
1803
|
+
"__schema": "ParameterSchema",
|
|
1804
|
+
"location": {
|
|
1805
|
+
"filePath": "cli-parser.ts",
|
|
1806
|
+
"line": 23,
|
|
1807
|
+
"character": 5
|
|
1808
|
+
},
|
|
1809
|
+
"name": "onCommandStartSlot",
|
|
1810
|
+
"type": {
|
|
1811
|
+
"__schema": "TypeRefSchema",
|
|
1812
|
+
"location": {
|
|
1813
|
+
"filePath": "cli-parser.ts",
|
|
1814
|
+
"line": 23,
|
|
1815
|
+
"character": 33
|
|
1816
|
+
},
|
|
1817
|
+
"name": "OnCommandStartSlot"
|
|
1818
|
+
},
|
|
1819
|
+
"isOptional": false,
|
|
1820
|
+
"isSpread": false
|
|
1821
|
+
}
|
|
1822
|
+
],
|
|
1823
|
+
"returnType": {
|
|
1824
|
+
"__schema": "ThisTypeSchema",
|
|
1825
|
+
"location": {
|
|
1826
|
+
"filePath": "cli-parser.ts",
|
|
1827
|
+
"line": 17,
|
|
1828
|
+
"character": 1
|
|
1829
|
+
},
|
|
1830
|
+
"name": "CLIParser"
|
|
1831
|
+
},
|
|
1832
|
+
"modifiers": []
|
|
1833
|
+
},
|
|
1834
|
+
{
|
|
1835
|
+
"__schema": "FunctionLikeSchema",
|
|
1836
|
+
"location": {
|
|
1837
|
+
"filePath": "cli-parser.ts",
|
|
1838
|
+
"line": 26,
|
|
1839
|
+
"character": 3
|
|
1840
|
+
},
|
|
1841
|
+
"signature": "(method) CLIParser.parse(args?: string[]): Promise<CommandRunner>",
|
|
1842
|
+
"name": "parse",
|
|
1843
|
+
"params": [
|
|
1844
|
+
{
|
|
1845
|
+
"__schema": "ParameterSchema",
|
|
1846
|
+
"location": {
|
|
1847
|
+
"filePath": "cli-parser.ts",
|
|
1848
|
+
"line": 26,
|
|
1849
|
+
"character": 15
|
|
1850
|
+
},
|
|
1851
|
+
"name": "args",
|
|
1852
|
+
"type": {
|
|
1853
|
+
"__schema": "InferenceTypeSchema",
|
|
1854
|
+
"location": {
|
|
1855
|
+
"filePath": "cli-parser.ts",
|
|
1856
|
+
"line": 26,
|
|
1857
|
+
"character": 15
|
|
1858
|
+
},
|
|
1859
|
+
"type": "string[]"
|
|
1860
|
+
},
|
|
1861
|
+
"isOptional": true,
|
|
1862
|
+
"defaultValue": "process.argv.slice(2)",
|
|
1863
|
+
"isSpread": false
|
|
1864
|
+
}
|
|
1865
|
+
],
|
|
1866
|
+
"returnType": {
|
|
1867
|
+
"__schema": "TypeRefSchema",
|
|
1868
|
+
"location": {
|
|
1869
|
+
"filePath": "cli-parser.ts",
|
|
1870
|
+
"line": 26,
|
|
1871
|
+
"character": 46
|
|
1872
|
+
},
|
|
1873
|
+
"name": "Promise",
|
|
1874
|
+
"typeArgs": [
|
|
1875
|
+
{
|
|
1876
|
+
"__schema": "TypeRefSchema",
|
|
1877
|
+
"location": {
|
|
1878
|
+
"filePath": "cli-parser.ts",
|
|
1879
|
+
"line": 26,
|
|
1880
|
+
"character": 54
|
|
1881
|
+
},
|
|
1882
|
+
"name": "CommandRunner"
|
|
1883
|
+
}
|
|
1884
|
+
]
|
|
1885
|
+
},
|
|
1886
|
+
"modifiers": [
|
|
1887
|
+
"async"
|
|
1888
|
+
]
|
|
1889
|
+
}
|
|
1890
|
+
],
|
|
1891
|
+
"extendsNodes": [],
|
|
1892
|
+
"implementNodes": []
|
|
1893
|
+
},
|
|
1894
|
+
{
|
|
1895
|
+
"__schema": "FunctionLikeSchema",
|
|
1896
|
+
"location": {
|
|
1897
|
+
"filePath": "cli-parser.ts",
|
|
1898
|
+
"line": 289,
|
|
1899
|
+
"character": 1
|
|
1900
|
+
},
|
|
1901
|
+
"signature": "function findCommandByArgv(commands: Command[]): Command | undefined",
|
|
1902
|
+
"name": "findCommandByArgv",
|
|
1903
|
+
"params": [
|
|
1904
|
+
{
|
|
1905
|
+
"__schema": "ParameterSchema",
|
|
1906
|
+
"location": {
|
|
1907
|
+
"filePath": "cli-parser.ts",
|
|
1908
|
+
"line": 289,
|
|
1909
|
+
"character": 35
|
|
1910
|
+
},
|
|
1911
|
+
"name": "commands",
|
|
1912
|
+
"type": {
|
|
1913
|
+
"__schema": "TypeArraySchema",
|
|
1914
|
+
"location": {
|
|
1915
|
+
"filePath": "cli-parser.ts",
|
|
1916
|
+
"line": 289,
|
|
1917
|
+
"character": 45
|
|
1918
|
+
},
|
|
1919
|
+
"type": {
|
|
1920
|
+
"__schema": "TypeRefSchema",
|
|
1921
|
+
"location": {
|
|
1922
|
+
"filePath": "cli-parser.ts",
|
|
1923
|
+
"line": 289,
|
|
1924
|
+
"character": 45
|
|
1925
|
+
},
|
|
1926
|
+
"name": "Command"
|
|
1927
|
+
}
|
|
1928
|
+
},
|
|
1929
|
+
"isOptional": false,
|
|
1930
|
+
"isSpread": false
|
|
1931
|
+
}
|
|
1932
|
+
],
|
|
1933
|
+
"returnType": {
|
|
1934
|
+
"__schema": "TypeUnionSchema",
|
|
1935
|
+
"location": {
|
|
1936
|
+
"filePath": "cli-parser.ts",
|
|
1937
|
+
"line": 289,
|
|
1938
|
+
"character": 57
|
|
1939
|
+
},
|
|
1940
|
+
"types": [
|
|
1941
|
+
{
|
|
1942
|
+
"__schema": "TypeRefSchema",
|
|
1943
|
+
"location": {
|
|
1944
|
+
"filePath": "cli-parser.ts",
|
|
1945
|
+
"line": 289,
|
|
1946
|
+
"character": 57
|
|
1947
|
+
},
|
|
1948
|
+
"name": "Command"
|
|
1949
|
+
},
|
|
1950
|
+
{
|
|
1951
|
+
"__schema": "KeywordTypeSchema",
|
|
1952
|
+
"location": {
|
|
1953
|
+
"filePath": "cli-parser.ts",
|
|
1954
|
+
"line": 289,
|
|
1955
|
+
"character": 67
|
|
1956
|
+
},
|
|
1957
|
+
"name": "undefined"
|
|
1958
|
+
}
|
|
1959
|
+
]
|
|
1960
|
+
},
|
|
1961
|
+
"modifiers": [
|
|
1962
|
+
"export"
|
|
1963
|
+
]
|
|
1964
|
+
}
|
|
1965
|
+
],
|
|
1966
|
+
"internals": []
|
|
1967
|
+
},
|
|
1454
1968
|
{
|
|
1455
1969
|
"__schema": "ModuleSchema",
|
|
1456
1970
|
"location": {
|
|
@@ -2212,14 +2726,75 @@
|
|
|
2212
2726
|
"__schema": "FunctionLikeSchema",
|
|
2213
2727
|
"location": {
|
|
2214
2728
|
"filePath": "cli.main.runtime.ts",
|
|
2215
|
-
"line":
|
|
2729
|
+
"line": 77,
|
|
2730
|
+
"character": 3
|
|
2731
|
+
},
|
|
2732
|
+
"signature": "(method) CLIMain.getCommandByNameOrAlias(name: string): Command | undefined",
|
|
2733
|
+
"name": "getCommandByNameOrAlias",
|
|
2734
|
+
"params": [
|
|
2735
|
+
{
|
|
2736
|
+
"__schema": "ParameterSchema",
|
|
2737
|
+
"location": {
|
|
2738
|
+
"filePath": "cli.main.runtime.ts",
|
|
2739
|
+
"line": 77,
|
|
2740
|
+
"character": 27
|
|
2741
|
+
},
|
|
2742
|
+
"name": "name",
|
|
2743
|
+
"type": {
|
|
2744
|
+
"__schema": "KeywordTypeSchema",
|
|
2745
|
+
"location": {
|
|
2746
|
+
"filePath": "cli.main.runtime.ts",
|
|
2747
|
+
"line": 77,
|
|
2748
|
+
"character": 33
|
|
2749
|
+
},
|
|
2750
|
+
"name": "string"
|
|
2751
|
+
},
|
|
2752
|
+
"isOptional": false,
|
|
2753
|
+
"isSpread": false
|
|
2754
|
+
}
|
|
2755
|
+
],
|
|
2756
|
+
"returnType": {
|
|
2757
|
+
"__schema": "TypeUnionSchema",
|
|
2758
|
+
"location": {
|
|
2759
|
+
"filePath": "cli.main.runtime.ts",
|
|
2760
|
+
"line": 77,
|
|
2761
|
+
"character": 42
|
|
2762
|
+
},
|
|
2763
|
+
"types": [
|
|
2764
|
+
{
|
|
2765
|
+
"__schema": "TypeRefSchema",
|
|
2766
|
+
"location": {
|
|
2767
|
+
"filePath": "cli.main.runtime.ts",
|
|
2768
|
+
"line": 77,
|
|
2769
|
+
"character": 42
|
|
2770
|
+
},
|
|
2771
|
+
"name": "Command"
|
|
2772
|
+
},
|
|
2773
|
+
{
|
|
2774
|
+
"__schema": "KeywordTypeSchema",
|
|
2775
|
+
"location": {
|
|
2776
|
+
"filePath": "cli.main.runtime.ts",
|
|
2777
|
+
"line": 77,
|
|
2778
|
+
"character": 52
|
|
2779
|
+
},
|
|
2780
|
+
"name": "undefined"
|
|
2781
|
+
}
|
|
2782
|
+
]
|
|
2783
|
+
},
|
|
2784
|
+
"modifiers": []
|
|
2785
|
+
},
|
|
2786
|
+
{
|
|
2787
|
+
"__schema": "FunctionLikeSchema",
|
|
2788
|
+
"location": {
|
|
2789
|
+
"filePath": "cli.main.runtime.ts",
|
|
2790
|
+
"line": 89,
|
|
2216
2791
|
"character": 3
|
|
2217
2792
|
},
|
|
2218
2793
|
"doc": {
|
|
2219
2794
|
"__schema": "DocSchema",
|
|
2220
2795
|
"location": {
|
|
2221
2796
|
"filePath": "cli.main.runtime.ts",
|
|
2222
|
-
"line":
|
|
2797
|
+
"line": 83,
|
|
2223
2798
|
"character": 3
|
|
2224
2799
|
},
|
|
2225
2800
|
"raw": "/**\n * when running `bit help`, commands are grouped by categories.\n * this method helps registering a new group by providing its name and a description.\n * the name is what needs to be assigned to the `group` property of the Command interface.\n * the description is what shown in the `bit help` output.\n */",
|
|
@@ -2233,7 +2808,7 @@
|
|
|
2233
2808
|
"__schema": "ParameterSchema",
|
|
2234
2809
|
"location": {
|
|
2235
2810
|
"filePath": "cli.main.runtime.ts",
|
|
2236
|
-
"line":
|
|
2811
|
+
"line": 89,
|
|
2237
2812
|
"character": 17
|
|
2238
2813
|
},
|
|
2239
2814
|
"name": "name",
|
|
@@ -2241,7 +2816,7 @@
|
|
|
2241
2816
|
"__schema": "KeywordTypeSchema",
|
|
2242
2817
|
"location": {
|
|
2243
2818
|
"filePath": "cli.main.runtime.ts",
|
|
2244
|
-
"line":
|
|
2819
|
+
"line": 89,
|
|
2245
2820
|
"character": 23
|
|
2246
2821
|
},
|
|
2247
2822
|
"name": "string"
|
|
@@ -2253,7 +2828,7 @@
|
|
|
2253
2828
|
"__schema": "ParameterSchema",
|
|
2254
2829
|
"location": {
|
|
2255
2830
|
"filePath": "cli.main.runtime.ts",
|
|
2256
|
-
"line":
|
|
2831
|
+
"line": 89,
|
|
2257
2832
|
"character": 31
|
|
2258
2833
|
},
|
|
2259
2834
|
"name": "description",
|
|
@@ -2261,7 +2836,7 @@
|
|
|
2261
2836
|
"__schema": "KeywordTypeSchema",
|
|
2262
2837
|
"location": {
|
|
2263
2838
|
"filePath": "cli.main.runtime.ts",
|
|
2264
|
-
"line":
|
|
2839
|
+
"line": 89,
|
|
2265
2840
|
"character": 44
|
|
2266
2841
|
},
|
|
2267
2842
|
"name": "string"
|
|
@@ -2274,7 +2849,7 @@
|
|
|
2274
2849
|
"__schema": "InferenceTypeSchema",
|
|
2275
2850
|
"location": {
|
|
2276
2851
|
"filePath": "cli.main.runtime.ts",
|
|
2277
|
-
"line":
|
|
2852
|
+
"line": 89,
|
|
2278
2853
|
"character": 3
|
|
2279
2854
|
},
|
|
2280
2855
|
"type": "void"
|
|
@@ -2285,14 +2860,14 @@
|
|
|
2285
2860
|
"__schema": "FunctionLikeSchema",
|
|
2286
2861
|
"location": {
|
|
2287
2862
|
"filePath": "cli.main.runtime.ts",
|
|
2288
|
-
"line":
|
|
2863
|
+
"line": 100,
|
|
2289
2864
|
"character": 3
|
|
2290
2865
|
},
|
|
2291
2866
|
"doc": {
|
|
2292
2867
|
"__schema": "DocSchema",
|
|
2293
2868
|
"location": {
|
|
2294
2869
|
"filePath": "cli.main.runtime.ts",
|
|
2295
|
-
"line":
|
|
2870
|
+
"line": 97,
|
|
2296
2871
|
"character": 3
|
|
2297
2872
|
},
|
|
2298
2873
|
"raw": "/**\n * onStart is when bootstrapping the CLI. (it happens before onCommandStart)\n */",
|
|
@@ -2306,7 +2881,7 @@
|
|
|
2306
2881
|
"__schema": "ParameterSchema",
|
|
2307
2882
|
"location": {
|
|
2308
2883
|
"filePath": "cli.main.runtime.ts",
|
|
2309
|
-
"line":
|
|
2884
|
+
"line": 100,
|
|
2310
2885
|
"character": 19
|
|
2311
2886
|
},
|
|
2312
2887
|
"name": "onStartFn",
|
|
@@ -2314,7 +2889,7 @@
|
|
|
2314
2889
|
"__schema": "TypeRefSchema",
|
|
2315
2890
|
"location": {
|
|
2316
2891
|
"filePath": "cli.main.runtime.ts",
|
|
2317
|
-
"line":
|
|
2892
|
+
"line": 100,
|
|
2318
2893
|
"character": 30
|
|
2319
2894
|
},
|
|
2320
2895
|
"name": "OnStart"
|
|
@@ -2327,7 +2902,7 @@
|
|
|
2327
2902
|
"__schema": "TypeRefSchema",
|
|
2328
2903
|
"location": {
|
|
2329
2904
|
"filePath": "cli.main.runtime.ts",
|
|
2330
|
-
"line":
|
|
2905
|
+
"line": 100,
|
|
2331
2906
|
"character": 3
|
|
2332
2907
|
},
|
|
2333
2908
|
"name": "CLIMain"
|
|
@@ -2338,14 +2913,14 @@
|
|
|
2338
2913
|
"__schema": "FunctionLikeSchema",
|
|
2339
2914
|
"location": {
|
|
2340
2915
|
"filePath": "cli.main.runtime.ts",
|
|
2341
|
-
"line":
|
|
2916
|
+
"line": 109,
|
|
2342
2917
|
"character": 3
|
|
2343
2918
|
},
|
|
2344
2919
|
"doc": {
|
|
2345
2920
|
"__schema": "DocSchema",
|
|
2346
2921
|
"location": {
|
|
2347
2922
|
"filePath": "cli.main.runtime.ts",
|
|
2348
|
-
"line":
|
|
2923
|
+
"line": 105,
|
|
2349
2924
|
"character": 3
|
|
2350
2925
|
},
|
|
2351
2926
|
"raw": "/**\n * onCommandStart is when a command is about to start and we have the command object and the parsed args and flags\n * already. (it happens after onStart)\n */",
|
|
@@ -2359,7 +2934,7 @@
|
|
|
2359
2934
|
"__schema": "ParameterSchema",
|
|
2360
2935
|
"location": {
|
|
2361
2936
|
"filePath": "cli.main.runtime.ts",
|
|
2362
|
-
"line":
|
|
2937
|
+
"line": 109,
|
|
2363
2938
|
"character": 26
|
|
2364
2939
|
},
|
|
2365
2940
|
"name": "onCommandStartFn",
|
|
@@ -2367,7 +2942,7 @@
|
|
|
2367
2942
|
"__schema": "TypeRefSchema",
|
|
2368
2943
|
"location": {
|
|
2369
2944
|
"filePath": "cli.main.runtime.ts",
|
|
2370
|
-
"line":
|
|
2945
|
+
"line": 109,
|
|
2371
2946
|
"character": 44
|
|
2372
2947
|
},
|
|
2373
2948
|
"name": "OnCommandStart"
|
|
@@ -2380,7 +2955,7 @@
|
|
|
2380
2955
|
"__schema": "TypeRefSchema",
|
|
2381
2956
|
"location": {
|
|
2382
2957
|
"filePath": "cli.main.runtime.ts",
|
|
2383
|
-
"line":
|
|
2958
|
+
"line": 109,
|
|
2384
2959
|
"character": 3
|
|
2385
2960
|
},
|
|
2386
2961
|
"name": "CLIMain"
|
|
@@ -2391,14 +2966,14 @@
|
|
|
2391
2966
|
"__schema": "FunctionLikeSchema",
|
|
2392
2967
|
"location": {
|
|
2393
2968
|
"filePath": "cli.main.runtime.ts",
|
|
2394
|
-
"line":
|
|
2969
|
+
"line": 129,
|
|
2395
2970
|
"character": 3
|
|
2396
2971
|
},
|
|
2397
2972
|
"doc": {
|
|
2398
2973
|
"__schema": "DocSchema",
|
|
2399
2974
|
"location": {
|
|
2400
2975
|
"filePath": "cli.main.runtime.ts",
|
|
2401
|
-
"line":
|
|
2976
|
+
"line": 114,
|
|
2402
2977
|
"character": 3
|
|
2403
2978
|
},
|
|
2404
2979
|
"raw": "/**\n * This will register a function to be called before the process exits.\n * This will run only for \"regular\" exits\n * e.g.\n * yes - command run and finished successfully\n * yes - command run and failed gracefully (code 1)\n * not SIGKILL (kill -9)\n * not SIGINT (Ctrl+C)\n * not SIGTERM (kill)\n * not uncaughtException\n * not unhandledRejection\n *\n * @param onBeforeExitFn\n * @returns\n */",
|
|
@@ -2408,7 +2983,7 @@
|
|
|
2408
2983
|
"__schema": "PropertyLikeTagSchema",
|
|
2409
2984
|
"location": {
|
|
2410
2985
|
"filePath": "cli.main.runtime.ts",
|
|
2411
|
-
"line":
|
|
2986
|
+
"line": 126,
|
|
2412
2987
|
"character": 6
|
|
2413
2988
|
},
|
|
2414
2989
|
"name": "onBeforeExitFn",
|
|
@@ -2418,7 +2993,7 @@
|
|
|
2418
2993
|
"__schema": "ReturnTagSchema",
|
|
2419
2994
|
"location": {
|
|
2420
2995
|
"filePath": "cli.main.runtime.ts",
|
|
2421
|
-
"line":
|
|
2996
|
+
"line": 127,
|
|
2422
2997
|
"character": 6
|
|
2423
2998
|
},
|
|
2424
2999
|
"tagName": "return"
|
|
@@ -2432,7 +3007,7 @@
|
|
|
2432
3007
|
"__schema": "ParameterSchema",
|
|
2433
3008
|
"location": {
|
|
2434
3009
|
"filePath": "cli.main.runtime.ts",
|
|
2435
|
-
"line":
|
|
3010
|
+
"line": 129,
|
|
2436
3011
|
"character": 24
|
|
2437
3012
|
},
|
|
2438
3013
|
"name": "onBeforeExitFn",
|
|
@@ -2440,7 +3015,7 @@
|
|
|
2440
3015
|
"__schema": "TypeRefSchema",
|
|
2441
3016
|
"location": {
|
|
2442
3017
|
"filePath": "cli.main.runtime.ts",
|
|
2443
|
-
"line":
|
|
3018
|
+
"line": 129,
|
|
2444
3019
|
"character": 40
|
|
2445
3020
|
},
|
|
2446
3021
|
"name": "OnBeforeExitFn"
|
|
@@ -2453,7 +3028,7 @@
|
|
|
2453
3028
|
"__schema": "TypeRefSchema",
|
|
2454
3029
|
"location": {
|
|
2455
3030
|
"filePath": "cli.main.runtime.ts",
|
|
2456
|
-
"line":
|
|
3031
|
+
"line": 129,
|
|
2457
3032
|
"character": 3
|
|
2458
3033
|
},
|
|
2459
3034
|
"name": "CLIMain"
|
|
@@ -2464,14 +3039,14 @@
|
|
|
2464
3039
|
"__schema": "FunctionLikeSchema",
|
|
2465
3040
|
"location": {
|
|
2466
3041
|
"filePath": "cli.main.runtime.ts",
|
|
2467
|
-
"line":
|
|
3042
|
+
"line": 138,
|
|
2468
3043
|
"character": 3
|
|
2469
3044
|
},
|
|
2470
3045
|
"doc": {
|
|
2471
3046
|
"__schema": "DocSchema",
|
|
2472
3047
|
"location": {
|
|
2473
3048
|
"filePath": "cli.main.runtime.ts",
|
|
2474
|
-
"line":
|
|
3049
|
+
"line": 135,
|
|
2475
3050
|
"character": 3
|
|
2476
3051
|
},
|
|
2477
3052
|
"raw": "/**\n * execute commands registered to this aspect.\n */",
|
|
@@ -2485,7 +3060,7 @@
|
|
|
2485
3060
|
"__schema": "ParameterSchema",
|
|
2486
3061
|
"location": {
|
|
2487
3062
|
"filePath": "cli.main.runtime.ts",
|
|
2488
|
-
"line":
|
|
3063
|
+
"line": 138,
|
|
2489
3064
|
"character": 13
|
|
2490
3065
|
},
|
|
2491
3066
|
"name": "hasWorkspace",
|
|
@@ -2493,7 +3068,7 @@
|
|
|
2493
3068
|
"__schema": "KeywordTypeSchema",
|
|
2494
3069
|
"location": {
|
|
2495
3070
|
"filePath": "cli.main.runtime.ts",
|
|
2496
|
-
"line":
|
|
3071
|
+
"line": 138,
|
|
2497
3072
|
"character": 27
|
|
2498
3073
|
},
|
|
2499
3074
|
"name": "boolean"
|
|
@@ -2506,7 +3081,7 @@
|
|
|
2506
3081
|
"__schema": "InferenceTypeSchema",
|
|
2507
3082
|
"location": {
|
|
2508
3083
|
"filePath": "cli.main.runtime.ts",
|
|
2509
|
-
"line":
|
|
3084
|
+
"line": 138,
|
|
2510
3085
|
"character": 3
|
|
2511
3086
|
},
|
|
2512
3087
|
"type": "Promise<void>"
|
|
@@ -2519,7 +3094,7 @@
|
|
|
2519
3094
|
"__schema": "VariableLikeSchema",
|
|
2520
3095
|
"location": {
|
|
2521
3096
|
"filePath": "cli.main.runtime.ts",
|
|
2522
|
-
"line":
|
|
3097
|
+
"line": 172,
|
|
2523
3098
|
"character": 3
|
|
2524
3099
|
},
|
|
2525
3100
|
"signature": "(property) CLIMain.dependencies: Aspect[]",
|
|
@@ -2528,7 +3103,7 @@
|
|
|
2528
3103
|
"__schema": "InferenceTypeSchema",
|
|
2529
3104
|
"location": {
|
|
2530
3105
|
"filePath": "cli.main.runtime.ts",
|
|
2531
|
-
"line":
|
|
3106
|
+
"line": 172,
|
|
2532
3107
|
"character": 3
|
|
2533
3108
|
},
|
|
2534
3109
|
"type": "Aspect[]"
|
|
@@ -2540,7 +3115,7 @@
|
|
|
2540
3115
|
"__schema": "VariableLikeSchema",
|
|
2541
3116
|
"location": {
|
|
2542
3117
|
"filePath": "cli.main.runtime.ts",
|
|
2543
|
-
"line":
|
|
3118
|
+
"line": 173,
|
|
2544
3119
|
"character": 3
|
|
2545
3120
|
},
|
|
2546
3121
|
"signature": "(property) CLIMain.runtime: RuntimeDefinition",
|
|
@@ -2549,7 +3124,7 @@
|
|
|
2549
3124
|
"__schema": "InferenceTypeSchema",
|
|
2550
3125
|
"location": {
|
|
2551
3126
|
"filePath": "cli.main.runtime.ts",
|
|
2552
|
-
"line":
|
|
3127
|
+
"line": 173,
|
|
2553
3128
|
"character": 3
|
|
2554
3129
|
},
|
|
2555
3130
|
"type": "RuntimeDefinition"
|
|
@@ -2561,7 +3136,7 @@
|
|
|
2561
3136
|
"__schema": "VariableLikeSchema",
|
|
2562
3137
|
"location": {
|
|
2563
3138
|
"filePath": "cli.main.runtime.ts",
|
|
2564
|
-
"line":
|
|
3139
|
+
"line": 174,
|
|
2565
3140
|
"character": 3
|
|
2566
3141
|
},
|
|
2567
3142
|
"signature": "(property) CLIMain.slots: (((registerFn: () => string) => SlotRegistry<CommandList>) | ((registerFn: () => string) => SlotRegistry<OnStart>) | ((registerFn: () => string) => SlotRegistry<...>))[]",
|
|
@@ -2570,7 +3145,7 @@
|
|
|
2570
3145
|
"__schema": "InferenceTypeSchema",
|
|
2571
3146
|
"location": {
|
|
2572
3147
|
"filePath": "cli.main.runtime.ts",
|
|
2573
|
-
"line":
|
|
3148
|
+
"line": 174,
|
|
2574
3149
|
"character": 3
|
|
2575
3150
|
},
|
|
2576
3151
|
"type": "(((registerFn: () => string) => SlotRegistry<CommandList>) | ((registerFn: () => string) => SlotRegistry<OnStart>) | ((registerFn: () => string) => SlotRegistry<...>))[]"
|
|
@@ -2582,7 +3157,7 @@
|
|
|
2582
3157
|
"__schema": "FunctionLikeSchema",
|
|
2583
3158
|
"location": {
|
|
2584
3159
|
"filePath": "cli.main.runtime.ts",
|
|
2585
|
-
"line":
|
|
3160
|
+
"line": 181,
|
|
2586
3161
|
"character": 3
|
|
2587
3162
|
},
|
|
2588
3163
|
"signature": "(method) CLIMain.provider([loggerMain]: [LoggerMain], config: any, [commandsSlot, onStartSlot, onCommandStartSlot, onBeforeExitSlot]: [\n CommandsSlot,\n OnStartSlot,\n OnCommandStartSlot,\n OnBeforeExitSlot\n]): Promise<CLIMain>",
|
|
@@ -2592,7 +3167,7 @@
|
|
|
2592
3167
|
"__schema": "ParameterSchema",
|
|
2593
3168
|
"location": {
|
|
2594
3169
|
"filePath": "cli.main.runtime.ts",
|
|
2595
|
-
"line":
|
|
3170
|
+
"line": 182,
|
|
2596
3171
|
"character": 5
|
|
2597
3172
|
},
|
|
2598
3173
|
"name": "[ loggerMain ]",
|
|
@@ -2600,7 +3175,7 @@
|
|
|
2600
3175
|
"__schema": "TupleTypeSchema",
|
|
2601
3176
|
"location": {
|
|
2602
3177
|
"filePath": "cli.main.runtime.ts",
|
|
2603
|
-
"line":
|
|
3178
|
+
"line": 182,
|
|
2604
3179
|
"character": 19
|
|
2605
3180
|
},
|
|
2606
3181
|
"elements": [
|
|
@@ -2608,7 +3183,7 @@
|
|
|
2608
3183
|
"__schema": "TypeRefSchema",
|
|
2609
3184
|
"location": {
|
|
2610
3185
|
"filePath": "cli.main.runtime.ts",
|
|
2611
|
-
"line":
|
|
3186
|
+
"line": 182,
|
|
2612
3187
|
"character": 20
|
|
2613
3188
|
},
|
|
2614
3189
|
"name": "LoggerMain"
|
|
@@ -2622,7 +3197,7 @@
|
|
|
2622
3197
|
"__schema": "ParameterSchema",
|
|
2623
3198
|
"location": {
|
|
2624
3199
|
"filePath": "cli.main.runtime.ts",
|
|
2625
|
-
"line":
|
|
3200
|
+
"line": 183,
|
|
2626
3201
|
"character": 5
|
|
2627
3202
|
},
|
|
2628
3203
|
"name": "config",
|
|
@@ -2630,7 +3205,7 @@
|
|
|
2630
3205
|
"__schema": "InferenceTypeSchema",
|
|
2631
3206
|
"location": {
|
|
2632
3207
|
"filePath": "cli.main.runtime.ts",
|
|
2633
|
-
"line":
|
|
3208
|
+
"line": 183,
|
|
2634
3209
|
"character": 5
|
|
2635
3210
|
},
|
|
2636
3211
|
"type": "any"
|
|
@@ -2642,7 +3217,7 @@
|
|
|
2642
3217
|
"__schema": "ParameterSchema",
|
|
2643
3218
|
"location": {
|
|
2644
3219
|
"filePath": "cli.main.runtime.ts",
|
|
2645
|
-
"line":
|
|
3220
|
+
"line": 184,
|
|
2646
3221
|
"character": 5
|
|
2647
3222
|
},
|
|
2648
3223
|
"name": "[ commandsSlot, onStartSlot, onCommandStartSlot, onBeforeExitSlot ]",
|
|
@@ -2650,7 +3225,7 @@
|
|
|
2650
3225
|
"__schema": "TupleTypeSchema",
|
|
2651
3226
|
"location": {
|
|
2652
3227
|
"filePath": "cli.main.runtime.ts",
|
|
2653
|
-
"line":
|
|
3228
|
+
"line": 184,
|
|
2654
3229
|
"character": 72
|
|
2655
3230
|
},
|
|
2656
3231
|
"elements": [
|
|
@@ -2658,7 +3233,7 @@
|
|
|
2658
3233
|
"__schema": "TypeRefSchema",
|
|
2659
3234
|
"location": {
|
|
2660
3235
|
"filePath": "cli.main.runtime.ts",
|
|
2661
|
-
"line":
|
|
3236
|
+
"line": 185,
|
|
2662
3237
|
"character": 7
|
|
2663
3238
|
},
|
|
2664
3239
|
"name": "CommandsSlot"
|
|
@@ -2667,7 +3242,7 @@
|
|
|
2667
3242
|
"__schema": "TypeRefSchema",
|
|
2668
3243
|
"location": {
|
|
2669
3244
|
"filePath": "cli.main.runtime.ts",
|
|
2670
|
-
"line":
|
|
3245
|
+
"line": 186,
|
|
2671
3246
|
"character": 7
|
|
2672
3247
|
},
|
|
2673
3248
|
"name": "OnStartSlot"
|
|
@@ -2676,7 +3251,7 @@
|
|
|
2676
3251
|
"__schema": "TypeRefSchema",
|
|
2677
3252
|
"location": {
|
|
2678
3253
|
"filePath": "cli.main.runtime.ts",
|
|
2679
|
-
"line":
|
|
3254
|
+
"line": 187,
|
|
2680
3255
|
"character": 7
|
|
2681
3256
|
},
|
|
2682
3257
|
"name": "OnCommandStartSlot"
|
|
@@ -2685,7 +3260,7 @@
|
|
|
2685
3260
|
"__schema": "TypeRefSchema",
|
|
2686
3261
|
"location": {
|
|
2687
3262
|
"filePath": "cli.main.runtime.ts",
|
|
2688
|
-
"line":
|
|
3263
|
+
"line": 188,
|
|
2689
3264
|
"character": 7
|
|
2690
3265
|
},
|
|
2691
3266
|
"name": "OnBeforeExitSlot"
|
|
@@ -2700,7 +3275,7 @@
|
|
|
2700
3275
|
"__schema": "InferenceTypeSchema",
|
|
2701
3276
|
"location": {
|
|
2702
3277
|
"filePath": "cli.main.runtime.ts",
|
|
2703
|
-
"line":
|
|
3278
|
+
"line": 181,
|
|
2704
3279
|
"character": 3
|
|
2705
3280
|
},
|
|
2706
3281
|
"type": "Promise<CLIMain>"
|
|
@@ -2720,7 +3295,7 @@
|
|
|
2720
3295
|
"__schema": "UnImplementedSchema",
|
|
2721
3296
|
"location": {
|
|
2722
3297
|
"filePath": "cli.main.runtime.ts",
|
|
2723
|
-
"line":
|
|
3298
|
+
"line": 203,
|
|
2724
3299
|
"character": 1
|
|
2725
3300
|
},
|
|
2726
3301
|
"name": "CLIAspect.addRuntime(CLIMain);",
|
|
@@ -2730,14 +3305,14 @@
|
|
|
2730
3305
|
"__schema": "FunctionLikeSchema",
|
|
2731
3306
|
"location": {
|
|
2732
3307
|
"filePath": "cli.main.runtime.ts",
|
|
2733
|
-
"line":
|
|
3308
|
+
"line": 211,
|
|
2734
3309
|
"character": 1
|
|
2735
3310
|
},
|
|
2736
3311
|
"doc": {
|
|
2737
3312
|
"__schema": "DocSchema",
|
|
2738
3313
|
"location": {
|
|
2739
3314
|
"filePath": "cli.main.runtime.ts",
|
|
2740
|
-
"line":
|
|
3315
|
+
"line": 205,
|
|
2741
3316
|
"character": 1
|
|
2742
3317
|
},
|
|
2743
3318
|
"raw": "/**\n * kind of a hack.\n * in the legacy, this is running at the beginning and it take care of issues when Bit files are missing,\n * such as \".bit\".\n * (to make this process better, you can easily remove it and run the e2e-tests. you'll see some failing)\n */",
|
|
@@ -2751,7 +3326,7 @@
|
|
|
2751
3326
|
"__schema": "InferenceTypeSchema",
|
|
2752
3327
|
"location": {
|
|
2753
3328
|
"filePath": "cli.main.runtime.ts",
|
|
2754
|
-
"line":
|
|
3329
|
+
"line": 211,
|
|
2755
3330
|
"character": 1
|
|
2756
3331
|
},
|
|
2757
3332
|
"type": "Promise<void>"
|
|
@@ -2764,7 +3339,7 @@
|
|
|
2764
3339
|
"__schema": "FunctionLikeSchema",
|
|
2765
3340
|
"location": {
|
|
2766
3341
|
"filePath": "cli.main.runtime.ts",
|
|
2767
|
-
"line":
|
|
3342
|
+
"line": 224,
|
|
2768
3343
|
"character": 1
|
|
2769
3344
|
},
|
|
2770
3345
|
"signature": "function isFullUrl(url: string): boolean",
|
|
@@ -2774,7 +3349,7 @@
|
|
|
2774
3349
|
"__schema": "ParameterSchema",
|
|
2775
3350
|
"location": {
|
|
2776
3351
|
"filePath": "cli.main.runtime.ts",
|
|
2777
|
-
"line":
|
|
3352
|
+
"line": 224,
|
|
2778
3353
|
"character": 20
|
|
2779
3354
|
},
|
|
2780
3355
|
"name": "url",
|
|
@@ -2782,7 +3357,7 @@
|
|
|
2782
3357
|
"__schema": "KeywordTypeSchema",
|
|
2783
3358
|
"location": {
|
|
2784
3359
|
"filePath": "cli.main.runtime.ts",
|
|
2785
|
-
"line":
|
|
3360
|
+
"line": 224,
|
|
2786
3361
|
"character": 25
|
|
2787
3362
|
},
|
|
2788
3363
|
"name": "string"
|
|
@@ -2795,7 +3370,7 @@
|
|
|
2795
3370
|
"__schema": "TypeRefSchema",
|
|
2796
3371
|
"location": {
|
|
2797
3372
|
"filePath": "cli.main.runtime.ts",
|
|
2798
|
-
"line":
|
|
3373
|
+
"line": 224,
|
|
2799
3374
|
"character": 1
|
|
2800
3375
|
},
|
|
2801
3376
|
"name": "isFullUrl",
|
|
@@ -2882,7 +3457,7 @@
|
|
|
2882
3457
|
"componentId": {
|
|
2883
3458
|
"scope": "teambit.harmony",
|
|
2884
3459
|
"name": "cli",
|
|
2885
|
-
"version": "0.0.
|
|
3460
|
+
"version": "0.0.934"
|
|
2886
3461
|
},
|
|
2887
3462
|
"taggedModuleExports": []
|
|
2888
3463
|
}
|