@teambit/git 1.0.158 → 1.0.160

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.
@@ -1,4 +1,4 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuites>
3
- <testsuite name="teambit.git/git@1.0.158" tests="0" failures="0" errors="0" skipped="0"/>
2
+ <testsuites tests="0" failures="0" errors="0" skipped="0">
3
+ <testsuite name="teambit.git/git@1.0.160" tests="0" failures="0" errors="0" skipped="0"/>
4
4
  </testsuites>
@@ -0,0 +1,1127 @@
1
+ {
2
+ "__schema": "APISchema",
3
+ "location": {
4
+ "filePath": "index.ts",
5
+ "line": 1,
6
+ "character": 1
7
+ },
8
+ "module": {
9
+ "__schema": "ModuleSchema",
10
+ "location": {
11
+ "filePath": "index.ts",
12
+ "line": 1,
13
+ "character": 1
14
+ },
15
+ "exports": [
16
+ {
17
+ "__schema": "ClassSchema",
18
+ "location": {
19
+ "filePath": "git.main.runtime.ts",
20
+ "line": 30,
21
+ "character": 1
22
+ },
23
+ "signature": "class GitMain",
24
+ "name": "GitMain",
25
+ "members": [
26
+ {
27
+ "__schema": "ConstructorSchema",
28
+ "location": {
29
+ "filePath": "git.main.runtime.ts",
30
+ "line": 31,
31
+ "character": 3
32
+ },
33
+ "signature": "constructor GitMain(workspace: Workspace, config: GitExtWorkspaceConfig): GitMain",
34
+ "name": "constructor",
35
+ "params": [
36
+ {
37
+ "__schema": "ParameterSchema",
38
+ "location": {
39
+ "filePath": "git.main.runtime.ts",
40
+ "line": 32,
41
+ "character": 5
42
+ },
43
+ "name": "workspace",
44
+ "type": {
45
+ "__schema": "TypeRefSchema",
46
+ "location": {
47
+ "filePath": "git.main.runtime.ts",
48
+ "line": 32,
49
+ "character": 24
50
+ },
51
+ "name": "Workspace"
52
+ },
53
+ "isOptional": false,
54
+ "isSpread": false
55
+ },
56
+ {
57
+ "__schema": "ParameterSchema",
58
+ "location": {
59
+ "filePath": "git.main.runtime.ts",
60
+ "line": 36,
61
+ "character": 5
62
+ },
63
+ "name": "config",
64
+ "type": {
65
+ "__schema": "TypeRefSchema",
66
+ "location": {
67
+ "filePath": "git.main.runtime.ts",
68
+ "line": 36,
69
+ "character": 22
70
+ },
71
+ "name": "GitExtWorkspaceConfig"
72
+ },
73
+ "isOptional": false,
74
+ "isSpread": false
75
+ }
76
+ ],
77
+ "returnType": {
78
+ "__schema": "ThisTypeSchema",
79
+ "location": {
80
+ "filePath": "git.main.runtime.ts",
81
+ "line": 30,
82
+ "character": 1
83
+ },
84
+ "name": "GitMain"
85
+ },
86
+ "modifiers": []
87
+ },
88
+ {
89
+ "__schema": "FunctionLikeSchema",
90
+ "location": {
91
+ "filePath": "git.main.runtime.ts",
92
+ "line": 39,
93
+ "character": 3
94
+ },
95
+ "signature": "(method) GitMain.mergeBitmaps(ancestor: string, current: string, other: string): Promise<string>",
96
+ "name": "mergeBitmaps",
97
+ "params": [
98
+ {
99
+ "__schema": "ParameterSchema",
100
+ "location": {
101
+ "filePath": "git.main.runtime.ts",
102
+ "line": 39,
103
+ "character": 22
104
+ },
105
+ "name": "ancestor",
106
+ "type": {
107
+ "__schema": "KeywordTypeSchema",
108
+ "location": {
109
+ "filePath": "git.main.runtime.ts",
110
+ "line": 39,
111
+ "character": 32
112
+ },
113
+ "name": "string"
114
+ },
115
+ "isOptional": false,
116
+ "isSpread": false
117
+ },
118
+ {
119
+ "__schema": "ParameterSchema",
120
+ "location": {
121
+ "filePath": "git.main.runtime.ts",
122
+ "line": 39,
123
+ "character": 40
124
+ },
125
+ "name": "current",
126
+ "type": {
127
+ "__schema": "KeywordTypeSchema",
128
+ "location": {
129
+ "filePath": "git.main.runtime.ts",
130
+ "line": 39,
131
+ "character": 49
132
+ },
133
+ "name": "string"
134
+ },
135
+ "isOptional": false,
136
+ "isSpread": false
137
+ },
138
+ {
139
+ "__schema": "ParameterSchema",
140
+ "location": {
141
+ "filePath": "git.main.runtime.ts",
142
+ "line": 39,
143
+ "character": 57
144
+ },
145
+ "name": "other",
146
+ "type": {
147
+ "__schema": "KeywordTypeSchema",
148
+ "location": {
149
+ "filePath": "git.main.runtime.ts",
150
+ "line": 39,
151
+ "character": 64
152
+ },
153
+ "name": "string"
154
+ },
155
+ "isOptional": false,
156
+ "isSpread": false
157
+ }
158
+ ],
159
+ "returnType": {
160
+ "__schema": "InferenceTypeSchema",
161
+ "location": {
162
+ "filePath": "git.main.runtime.ts",
163
+ "line": 39,
164
+ "character": 3
165
+ },
166
+ "type": "Promise<string>"
167
+ },
168
+ "modifiers": [
169
+ "async"
170
+ ]
171
+ },
172
+ {
173
+ "__schema": "FunctionLikeSchema",
174
+ "location": {
175
+ "filePath": "git.main.runtime.ts",
176
+ "line": 52,
177
+ "character": 3
178
+ },
179
+ "signature": "(method) GitMain.setGitMergeDriver(opts: SetGitMergeDriverOpts): Promise<boolean>",
180
+ "name": "setGitMergeDriver",
181
+ "params": [
182
+ {
183
+ "__schema": "ParameterSchema",
184
+ "location": {
185
+ "filePath": "git.main.runtime.ts",
186
+ "line": 52,
187
+ "character": 27
188
+ },
189
+ "name": "opts",
190
+ "type": {
191
+ "__schema": "TypeRefSchema",
192
+ "location": {
193
+ "filePath": "git.main.runtime.ts",
194
+ "line": 52,
195
+ "character": 33
196
+ },
197
+ "name": "SetGitMergeDriverOpts"
198
+ },
199
+ "isOptional": false,
200
+ "isSpread": false
201
+ }
202
+ ],
203
+ "returnType": {
204
+ "__schema": "InferenceTypeSchema",
205
+ "location": {
206
+ "filePath": "git.main.runtime.ts",
207
+ "line": 52,
208
+ "character": 3
209
+ },
210
+ "type": "Promise<boolean>"
211
+ },
212
+ "modifiers": [
213
+ "async"
214
+ ]
215
+ },
216
+ {
217
+ "__schema": "VariableLikeSchema",
218
+ "location": {
219
+ "filePath": "git.main.runtime.ts",
220
+ "line": 114,
221
+ "character": 3
222
+ },
223
+ "signature": "(property) GitMain.slots: never[]",
224
+ "name": "slots",
225
+ "type": {
226
+ "__schema": "InferenceTypeSchema",
227
+ "location": {
228
+ "filePath": "git.main.runtime.ts",
229
+ "line": 114,
230
+ "character": 3
231
+ },
232
+ "type": "never[]"
233
+ },
234
+ "isOptional": true,
235
+ "defaultValue": "[]"
236
+ },
237
+ {
238
+ "__schema": "VariableLikeSchema",
239
+ "location": {
240
+ "filePath": "git.main.runtime.ts",
241
+ "line": 117,
242
+ "character": 3
243
+ },
244
+ "signature": "(property) GitMain.dependencies: Aspect[]",
245
+ "name": "dependencies",
246
+ "type": {
247
+ "__schema": "InferenceTypeSchema",
248
+ "location": {
249
+ "filePath": "git.main.runtime.ts",
250
+ "line": 117,
251
+ "character": 3
252
+ },
253
+ "type": "Aspect[]"
254
+ },
255
+ "isOptional": true,
256
+ "defaultValue": "[CLIAspect, WorkspaceAspect]"
257
+ },
258
+ {
259
+ "__schema": "VariableLikeSchema",
260
+ "location": {
261
+ "filePath": "git.main.runtime.ts",
262
+ "line": 119,
263
+ "character": 3
264
+ },
265
+ "signature": "(property) GitMain.runtime: RuntimeDefinition",
266
+ "name": "runtime",
267
+ "type": {
268
+ "__schema": "InferenceTypeSchema",
269
+ "location": {
270
+ "filePath": "git.main.runtime.ts",
271
+ "line": 119,
272
+ "character": 3
273
+ },
274
+ "type": "RuntimeDefinition"
275
+ },
276
+ "isOptional": true,
277
+ "defaultValue": "MainRuntime"
278
+ },
279
+ {
280
+ "__schema": "FunctionLikeSchema",
281
+ "location": {
282
+ "filePath": "git.main.runtime.ts",
283
+ "line": 121,
284
+ "character": 3
285
+ },
286
+ "signature": "(method) GitMain.provider([cli, workspace]: [CLIMain, Workspace], config: GitExtWorkspaceConfig): Promise<GitMain>",
287
+ "name": "provider",
288
+ "params": [
289
+ {
290
+ "__schema": "ParameterSchema",
291
+ "location": {
292
+ "filePath": "git.main.runtime.ts",
293
+ "line": 121,
294
+ "character": 25
295
+ },
296
+ "name": "[ cli, workspace ]",
297
+ "type": {
298
+ "__schema": "TupleTypeSchema",
299
+ "location": {
300
+ "filePath": "git.main.runtime.ts",
301
+ "line": 121,
302
+ "character": 43
303
+ },
304
+ "elements": [
305
+ {
306
+ "__schema": "TypeRefSchema",
307
+ "location": {
308
+ "filePath": "git.main.runtime.ts",
309
+ "line": 121,
310
+ "character": 44
311
+ },
312
+ "name": "CLIMain"
313
+ },
314
+ {
315
+ "__schema": "TypeRefSchema",
316
+ "location": {
317
+ "filePath": "git.main.runtime.ts",
318
+ "line": 121,
319
+ "character": 53
320
+ },
321
+ "name": "Workspace"
322
+ }
323
+ ]
324
+ },
325
+ "isOptional": false,
326
+ "isSpread": false
327
+ },
328
+ {
329
+ "__schema": "ParameterSchema",
330
+ "location": {
331
+ "filePath": "git.main.runtime.ts",
332
+ "line": 121,
333
+ "character": 65
334
+ },
335
+ "name": "config",
336
+ "type": {
337
+ "__schema": "TypeRefSchema",
338
+ "location": {
339
+ "filePath": "git.main.runtime.ts",
340
+ "line": 121,
341
+ "character": 73
342
+ },
343
+ "name": "GitExtWorkspaceConfig"
344
+ },
345
+ "isOptional": false,
346
+ "isSpread": false
347
+ }
348
+ ],
349
+ "returnType": {
350
+ "__schema": "InferenceTypeSchema",
351
+ "location": {
352
+ "filePath": "git.main.runtime.ts",
353
+ "line": 121,
354
+ "character": 3
355
+ },
356
+ "type": "Promise<GitMain>"
357
+ },
358
+ "modifiers": [
359
+ "static",
360
+ "async"
361
+ ]
362
+ }
363
+ ],
364
+ "extendsNodes": [],
365
+ "implementNodes": []
366
+ },
367
+ {
368
+ "__schema": "UnImplementedSchema",
369
+ "location": {
370
+ "filePath": "index.ts",
371
+ "line": 4,
372
+ "character": 16
373
+ },
374
+ "name": "GitAspect",
375
+ "type": "Identifier"
376
+ },
377
+ {
378
+ "__schema": "VariableLikeSchema",
379
+ "location": {
380
+ "filePath": "git.aspect.ts",
381
+ "line": 3,
382
+ "character": 14
383
+ },
384
+ "signature": "const GitAspect: Aspect",
385
+ "name": "GitAspect",
386
+ "type": {
387
+ "__schema": "TypeRefSchema",
388
+ "location": {
389
+ "filePath": "git.aspect.ts",
390
+ "line": 3,
391
+ "character": 14
392
+ },
393
+ "name": "Aspect",
394
+ "componentId": {
395
+ "scope": "teambit.harmony",
396
+ "name": "harmony",
397
+ "version": "0.4.6"
398
+ }
399
+ },
400
+ "isOptional": false,
401
+ "defaultValue": "Aspect.create({\n id: 'teambit.git/git',\n})"
402
+ }
403
+ ],
404
+ "internals": []
405
+ },
406
+ "internals": [
407
+ {
408
+ "__schema": "ModuleSchema",
409
+ "location": {
410
+ "filePath": "git.main.runtime.ts",
411
+ "line": 1,
412
+ "character": 1
413
+ },
414
+ "exports": [
415
+ {
416
+ "__schema": "InterfaceSchema",
417
+ "location": {
418
+ "filePath": "git.main.runtime.ts",
419
+ "line": 27,
420
+ "character": 1
421
+ },
422
+ "signature": "interface GitExtWorkspaceConfig",
423
+ "name": "GitExtWorkspaceConfig",
424
+ "members": [
425
+ {
426
+ "__schema": "VariableLikeSchema",
427
+ "location": {
428
+ "filePath": "git.main.runtime.ts",
429
+ "line": 28,
430
+ "character": 3
431
+ },
432
+ "signature": "(property) GitExtWorkspaceConfig.mergeStrategy: \"manual\" | \"theirs\" | \"ours\"",
433
+ "name": "mergeStrategy",
434
+ "type": {
435
+ "__schema": "TypeUnionSchema",
436
+ "location": {
437
+ "filePath": "git.main.runtime.ts",
438
+ "line": 28,
439
+ "character": 18
440
+ },
441
+ "types": [
442
+ {
443
+ "__schema": "LiteralTypeSchema",
444
+ "location": {
445
+ "filePath": "git.main.runtime.ts",
446
+ "line": 28,
447
+ "character": 18
448
+ },
449
+ "name": "'ours'"
450
+ },
451
+ {
452
+ "__schema": "LiteralTypeSchema",
453
+ "location": {
454
+ "filePath": "git.main.runtime.ts",
455
+ "line": 28,
456
+ "character": 27
457
+ },
458
+ "name": "'theirs'"
459
+ },
460
+ {
461
+ "__schema": "LiteralTypeSchema",
462
+ "location": {
463
+ "filePath": "git.main.runtime.ts",
464
+ "line": 28,
465
+ "character": 38
466
+ },
467
+ "name": "'manual'"
468
+ }
469
+ ]
470
+ },
471
+ "isOptional": false
472
+ }
473
+ ],
474
+ "extendsNodes": []
475
+ },
476
+ {
477
+ "__schema": "ClassSchema",
478
+ "location": {
479
+ "filePath": "git.main.runtime.ts",
480
+ "line": 30,
481
+ "character": 1
482
+ },
483
+ "signature": "class GitMain",
484
+ "name": "GitMain",
485
+ "members": [
486
+ {
487
+ "__schema": "ConstructorSchema",
488
+ "location": {
489
+ "filePath": "git.main.runtime.ts",
490
+ "line": 31,
491
+ "character": 3
492
+ },
493
+ "signature": "constructor GitMain(workspace: Workspace, config: GitExtWorkspaceConfig): GitMain",
494
+ "name": "constructor",
495
+ "params": [
496
+ {
497
+ "__schema": "ParameterSchema",
498
+ "location": {
499
+ "filePath": "git.main.runtime.ts",
500
+ "line": 32,
501
+ "character": 5
502
+ },
503
+ "name": "workspace",
504
+ "type": {
505
+ "__schema": "TypeRefSchema",
506
+ "location": {
507
+ "filePath": "git.main.runtime.ts",
508
+ "line": 32,
509
+ "character": 24
510
+ },
511
+ "name": "Workspace"
512
+ },
513
+ "isOptional": false,
514
+ "isSpread": false
515
+ },
516
+ {
517
+ "__schema": "ParameterSchema",
518
+ "location": {
519
+ "filePath": "git.main.runtime.ts",
520
+ "line": 36,
521
+ "character": 5
522
+ },
523
+ "name": "config",
524
+ "type": {
525
+ "__schema": "TypeRefSchema",
526
+ "location": {
527
+ "filePath": "git.main.runtime.ts",
528
+ "line": 36,
529
+ "character": 22
530
+ },
531
+ "name": "GitExtWorkspaceConfig"
532
+ },
533
+ "isOptional": false,
534
+ "isSpread": false
535
+ }
536
+ ],
537
+ "returnType": {
538
+ "__schema": "ThisTypeSchema",
539
+ "location": {
540
+ "filePath": "git.main.runtime.ts",
541
+ "line": 30,
542
+ "character": 1
543
+ },
544
+ "name": "GitMain"
545
+ },
546
+ "modifiers": []
547
+ },
548
+ {
549
+ "__schema": "FunctionLikeSchema",
550
+ "location": {
551
+ "filePath": "git.main.runtime.ts",
552
+ "line": 39,
553
+ "character": 3
554
+ },
555
+ "signature": "(method) GitMain.mergeBitmaps(ancestor: string, current: string, other: string): Promise<string>",
556
+ "name": "mergeBitmaps",
557
+ "params": [
558
+ {
559
+ "__schema": "ParameterSchema",
560
+ "location": {
561
+ "filePath": "git.main.runtime.ts",
562
+ "line": 39,
563
+ "character": 22
564
+ },
565
+ "name": "ancestor",
566
+ "type": {
567
+ "__schema": "KeywordTypeSchema",
568
+ "location": {
569
+ "filePath": "git.main.runtime.ts",
570
+ "line": 39,
571
+ "character": 32
572
+ },
573
+ "name": "string"
574
+ },
575
+ "isOptional": false,
576
+ "isSpread": false
577
+ },
578
+ {
579
+ "__schema": "ParameterSchema",
580
+ "location": {
581
+ "filePath": "git.main.runtime.ts",
582
+ "line": 39,
583
+ "character": 40
584
+ },
585
+ "name": "current",
586
+ "type": {
587
+ "__schema": "KeywordTypeSchema",
588
+ "location": {
589
+ "filePath": "git.main.runtime.ts",
590
+ "line": 39,
591
+ "character": 49
592
+ },
593
+ "name": "string"
594
+ },
595
+ "isOptional": false,
596
+ "isSpread": false
597
+ },
598
+ {
599
+ "__schema": "ParameterSchema",
600
+ "location": {
601
+ "filePath": "git.main.runtime.ts",
602
+ "line": 39,
603
+ "character": 57
604
+ },
605
+ "name": "other",
606
+ "type": {
607
+ "__schema": "KeywordTypeSchema",
608
+ "location": {
609
+ "filePath": "git.main.runtime.ts",
610
+ "line": 39,
611
+ "character": 64
612
+ },
613
+ "name": "string"
614
+ },
615
+ "isOptional": false,
616
+ "isSpread": false
617
+ }
618
+ ],
619
+ "returnType": {
620
+ "__schema": "InferenceTypeSchema",
621
+ "location": {
622
+ "filePath": "git.main.runtime.ts",
623
+ "line": 39,
624
+ "character": 3
625
+ },
626
+ "type": "Promise<string>"
627
+ },
628
+ "modifiers": [
629
+ "async"
630
+ ]
631
+ },
632
+ {
633
+ "__schema": "FunctionLikeSchema",
634
+ "location": {
635
+ "filePath": "git.main.runtime.ts",
636
+ "line": 52,
637
+ "character": 3
638
+ },
639
+ "signature": "(method) GitMain.setGitMergeDriver(opts: SetGitMergeDriverOpts): Promise<boolean>",
640
+ "name": "setGitMergeDriver",
641
+ "params": [
642
+ {
643
+ "__schema": "ParameterSchema",
644
+ "location": {
645
+ "filePath": "git.main.runtime.ts",
646
+ "line": 52,
647
+ "character": 27
648
+ },
649
+ "name": "opts",
650
+ "type": {
651
+ "__schema": "TypeRefSchema",
652
+ "location": {
653
+ "filePath": "git.main.runtime.ts",
654
+ "line": 52,
655
+ "character": 33
656
+ },
657
+ "name": "SetGitMergeDriverOpts"
658
+ },
659
+ "isOptional": false,
660
+ "isSpread": false
661
+ }
662
+ ],
663
+ "returnType": {
664
+ "__schema": "InferenceTypeSchema",
665
+ "location": {
666
+ "filePath": "git.main.runtime.ts",
667
+ "line": 52,
668
+ "character": 3
669
+ },
670
+ "type": "Promise<boolean>"
671
+ },
672
+ "modifiers": [
673
+ "async"
674
+ ]
675
+ },
676
+ {
677
+ "__schema": "VariableLikeSchema",
678
+ "location": {
679
+ "filePath": "git.main.runtime.ts",
680
+ "line": 114,
681
+ "character": 3
682
+ },
683
+ "signature": "(property) GitMain.slots: never[]",
684
+ "name": "slots",
685
+ "type": {
686
+ "__schema": "InferenceTypeSchema",
687
+ "location": {
688
+ "filePath": "git.main.runtime.ts",
689
+ "line": 114,
690
+ "character": 3
691
+ },
692
+ "type": "never[]"
693
+ },
694
+ "isOptional": true,
695
+ "defaultValue": "[]"
696
+ },
697
+ {
698
+ "__schema": "VariableLikeSchema",
699
+ "location": {
700
+ "filePath": "git.main.runtime.ts",
701
+ "line": 117,
702
+ "character": 3
703
+ },
704
+ "signature": "(property) GitMain.dependencies: Aspect[]",
705
+ "name": "dependencies",
706
+ "type": {
707
+ "__schema": "InferenceTypeSchema",
708
+ "location": {
709
+ "filePath": "git.main.runtime.ts",
710
+ "line": 117,
711
+ "character": 3
712
+ },
713
+ "type": "Aspect[]"
714
+ },
715
+ "isOptional": true,
716
+ "defaultValue": "[CLIAspect, WorkspaceAspect]"
717
+ },
718
+ {
719
+ "__schema": "VariableLikeSchema",
720
+ "location": {
721
+ "filePath": "git.main.runtime.ts",
722
+ "line": 119,
723
+ "character": 3
724
+ },
725
+ "signature": "(property) GitMain.runtime: RuntimeDefinition",
726
+ "name": "runtime",
727
+ "type": {
728
+ "__schema": "InferenceTypeSchema",
729
+ "location": {
730
+ "filePath": "git.main.runtime.ts",
731
+ "line": 119,
732
+ "character": 3
733
+ },
734
+ "type": "RuntimeDefinition"
735
+ },
736
+ "isOptional": true,
737
+ "defaultValue": "MainRuntime"
738
+ },
739
+ {
740
+ "__schema": "FunctionLikeSchema",
741
+ "location": {
742
+ "filePath": "git.main.runtime.ts",
743
+ "line": 121,
744
+ "character": 3
745
+ },
746
+ "signature": "(method) GitMain.provider([cli, workspace]: [CLIMain, Workspace], config: GitExtWorkspaceConfig): Promise<GitMain>",
747
+ "name": "provider",
748
+ "params": [
749
+ {
750
+ "__schema": "ParameterSchema",
751
+ "location": {
752
+ "filePath": "git.main.runtime.ts",
753
+ "line": 121,
754
+ "character": 25
755
+ },
756
+ "name": "[ cli, workspace ]",
757
+ "type": {
758
+ "__schema": "TupleTypeSchema",
759
+ "location": {
760
+ "filePath": "git.main.runtime.ts",
761
+ "line": 121,
762
+ "character": 43
763
+ },
764
+ "elements": [
765
+ {
766
+ "__schema": "TypeRefSchema",
767
+ "location": {
768
+ "filePath": "git.main.runtime.ts",
769
+ "line": 121,
770
+ "character": 44
771
+ },
772
+ "name": "CLIMain"
773
+ },
774
+ {
775
+ "__schema": "TypeRefSchema",
776
+ "location": {
777
+ "filePath": "git.main.runtime.ts",
778
+ "line": 121,
779
+ "character": 53
780
+ },
781
+ "name": "Workspace"
782
+ }
783
+ ]
784
+ },
785
+ "isOptional": false,
786
+ "isSpread": false
787
+ },
788
+ {
789
+ "__schema": "ParameterSchema",
790
+ "location": {
791
+ "filePath": "git.main.runtime.ts",
792
+ "line": 121,
793
+ "character": 65
794
+ },
795
+ "name": "config",
796
+ "type": {
797
+ "__schema": "TypeRefSchema",
798
+ "location": {
799
+ "filePath": "git.main.runtime.ts",
800
+ "line": 121,
801
+ "character": 73
802
+ },
803
+ "name": "GitExtWorkspaceConfig"
804
+ },
805
+ "isOptional": false,
806
+ "isSpread": false
807
+ }
808
+ ],
809
+ "returnType": {
810
+ "__schema": "InferenceTypeSchema",
811
+ "location": {
812
+ "filePath": "git.main.runtime.ts",
813
+ "line": 121,
814
+ "character": 3
815
+ },
816
+ "type": "Promise<GitMain>"
817
+ },
818
+ "modifiers": [
819
+ "static",
820
+ "async"
821
+ ]
822
+ }
823
+ ],
824
+ "extendsNodes": [],
825
+ "implementNodes": []
826
+ },
827
+ {
828
+ "__schema": "UnImplementedSchema",
829
+ "location": {
830
+ "filePath": "git.main.runtime.ts",
831
+ "line": 133,
832
+ "character": 16
833
+ },
834
+ "name": "GitMain",
835
+ "type": "Identifier"
836
+ }
837
+ ],
838
+ "internals": [
839
+ {
840
+ "__schema": "TypeSchema",
841
+ "location": {
842
+ "filePath": "git.main.runtime.ts",
843
+ "line": 13,
844
+ "character": 1
845
+ },
846
+ "signature": "type SetGitMergeDriverOpts = {\n global?: boolean | undefined;\n}",
847
+ "name": "SetGitMergeDriverOpts",
848
+ "type": {
849
+ "__schema": "TypeLiteralSchema",
850
+ "location": {
851
+ "filePath": "git.main.runtime.ts",
852
+ "line": 13,
853
+ "character": 30
854
+ },
855
+ "members": [
856
+ {
857
+ "__schema": "VariableLikeSchema",
858
+ "location": {
859
+ "filePath": "git.main.runtime.ts",
860
+ "line": 14,
861
+ "character": 3
862
+ },
863
+ "signature": "(property) global?: boolean | undefined",
864
+ "name": "global",
865
+ "type": {
866
+ "__schema": "KeywordTypeSchema",
867
+ "location": {
868
+ "filePath": "git.main.runtime.ts",
869
+ "line": 14,
870
+ "character": 12
871
+ },
872
+ "name": "boolean"
873
+ },
874
+ "isOptional": true
875
+ }
876
+ ]
877
+ }
878
+ },
879
+ {
880
+ "__schema": "ModuleSchema",
881
+ "location": {
882
+ "filePath": "git.main.runtime.ts",
883
+ "line": 17,
884
+ "character": 1
885
+ },
886
+ "exports": [
887
+ {
888
+ "__schema": "VariableLikeSchema",
889
+ "location": {
890
+ "filePath": "git.main.runtime.ts",
891
+ "line": 17,
892
+ "character": 7
893
+ },
894
+ "signature": "const GIT_BASE_KEY: \"merge.bitmap-driver\"",
895
+ "name": "GIT_BASE_KEY",
896
+ "type": {
897
+ "__schema": "InferenceTypeSchema",
898
+ "location": {
899
+ "filePath": "git.main.runtime.ts",
900
+ "line": 17,
901
+ "character": 7
902
+ },
903
+ "type": "\"merge.bitmap-driver\""
904
+ },
905
+ "isOptional": false,
906
+ "defaultValue": "'merge.bitmap-driver'"
907
+ }
908
+ ],
909
+ "internals": []
910
+ },
911
+ {
912
+ "__schema": "ModuleSchema",
913
+ "location": {
914
+ "filePath": "git.main.runtime.ts",
915
+ "line": 18,
916
+ "character": 1
917
+ },
918
+ "exports": [
919
+ {
920
+ "__schema": "VariableLikeSchema",
921
+ "location": {
922
+ "filePath": "git.main.runtime.ts",
923
+ "line": 18,
924
+ "character": 7
925
+ },
926
+ "signature": "const GIT_NAME_KEY: string",
927
+ "name": "GIT_NAME_KEY",
928
+ "type": {
929
+ "__schema": "InferenceTypeSchema",
930
+ "location": {
931
+ "filePath": "git.main.runtime.ts",
932
+ "line": 18,
933
+ "character": 7
934
+ },
935
+ "type": "string"
936
+ },
937
+ "isOptional": false,
938
+ "defaultValue": "`${GIT_BASE_KEY}.name`"
939
+ }
940
+ ],
941
+ "internals": []
942
+ },
943
+ {
944
+ "__schema": "ModuleSchema",
945
+ "location": {
946
+ "filePath": "git.main.runtime.ts",
947
+ "line": 19,
948
+ "character": 1
949
+ },
950
+ "exports": [
951
+ {
952
+ "__schema": "VariableLikeSchema",
953
+ "location": {
954
+ "filePath": "git.main.runtime.ts",
955
+ "line": 19,
956
+ "character": 7
957
+ },
958
+ "signature": "const GIT_DRIVER_KEY: string",
959
+ "name": "GIT_DRIVER_KEY",
960
+ "type": {
961
+ "__schema": "InferenceTypeSchema",
962
+ "location": {
963
+ "filePath": "git.main.runtime.ts",
964
+ "line": 19,
965
+ "character": 7
966
+ },
967
+ "type": "string"
968
+ },
969
+ "isOptional": false,
970
+ "defaultValue": "`${GIT_BASE_KEY}.driver`"
971
+ }
972
+ ],
973
+ "internals": []
974
+ },
975
+ {
976
+ "__schema": "ModuleSchema",
977
+ "location": {
978
+ "filePath": "git.main.runtime.ts",
979
+ "line": 21,
980
+ "character": 1
981
+ },
982
+ "exports": [
983
+ {
984
+ "__schema": "VariableLikeSchema",
985
+ "location": {
986
+ "filePath": "git.main.runtime.ts",
987
+ "line": 21,
988
+ "character": 7
989
+ },
990
+ "signature": "const GIT_NAME_VALUE: \"A custom merge driver used to resolve conflicts in .bitmap files\"",
991
+ "name": "GIT_NAME_VALUE",
992
+ "type": {
993
+ "__schema": "InferenceTypeSchema",
994
+ "location": {
995
+ "filePath": "git.main.runtime.ts",
996
+ "line": 21,
997
+ "character": 7
998
+ },
999
+ "type": "\"A custom merge driver used to resolve conflicts in .bitmap files\""
1000
+ },
1001
+ "isOptional": false,
1002
+ "defaultValue": "'A custom merge driver used to resolve conflicts in .bitmap files'"
1003
+ }
1004
+ ],
1005
+ "internals": []
1006
+ },
1007
+ {
1008
+ "__schema": "ModuleSchema",
1009
+ "location": {
1010
+ "filePath": "git.main.runtime.ts",
1011
+ "line": 23,
1012
+ "character": 1
1013
+ },
1014
+ "exports": [
1015
+ {
1016
+ "__schema": "VariableLikeSchema",
1017
+ "location": {
1018
+ "filePath": "git.main.runtime.ts",
1019
+ "line": 23,
1020
+ "character": 7
1021
+ },
1022
+ "signature": "const GIT_DRIVER_VALUE: \"bd git merge-bitmaps %O %A %B\"",
1023
+ "name": "GIT_DRIVER_VALUE",
1024
+ "type": {
1025
+ "__schema": "InferenceTypeSchema",
1026
+ "location": {
1027
+ "filePath": "git.main.runtime.ts",
1028
+ "line": 23,
1029
+ "character": 7
1030
+ },
1031
+ "type": "\"bd git merge-bitmaps %O %A %B\""
1032
+ },
1033
+ "isOptional": false,
1034
+ "defaultValue": "'bd git merge-bitmaps %O %A %B'"
1035
+ }
1036
+ ],
1037
+ "internals": []
1038
+ },
1039
+ {
1040
+ "__schema": "ModuleSchema",
1041
+ "location": {
1042
+ "filePath": "git.main.runtime.ts",
1043
+ "line": 25,
1044
+ "character": 1
1045
+ },
1046
+ "exports": [
1047
+ {
1048
+ "__schema": "VariableLikeSchema",
1049
+ "location": {
1050
+ "filePath": "git.main.runtime.ts",
1051
+ "line": 25,
1052
+ "character": 7
1053
+ },
1054
+ "signature": "const GIT_ATTRIBUTES: \".bitmap merge=bitmap-driver\"",
1055
+ "name": "GIT_ATTRIBUTES",
1056
+ "type": {
1057
+ "__schema": "InferenceTypeSchema",
1058
+ "location": {
1059
+ "filePath": "git.main.runtime.ts",
1060
+ "line": 25,
1061
+ "character": 7
1062
+ },
1063
+ "type": "\".bitmap merge=bitmap-driver\""
1064
+ },
1065
+ "isOptional": false,
1066
+ "defaultValue": "'.bitmap merge=bitmap-driver'"
1067
+ }
1068
+ ],
1069
+ "internals": []
1070
+ },
1071
+ {
1072
+ "__schema": "UnImplementedSchema",
1073
+ "location": {
1074
+ "filePath": "git.main.runtime.ts",
1075
+ "line": 131,
1076
+ "character": 1
1077
+ },
1078
+ "name": "GitAspect.addRuntime(GitMain);",
1079
+ "type": "ExpressionStatement"
1080
+ }
1081
+ ]
1082
+ },
1083
+ {
1084
+ "__schema": "ModuleSchema",
1085
+ "location": {
1086
+ "filePath": "git.aspect.ts",
1087
+ "line": 1,
1088
+ "character": 1
1089
+ },
1090
+ "exports": [
1091
+ {
1092
+ "__schema": "VariableLikeSchema",
1093
+ "location": {
1094
+ "filePath": "git.aspect.ts",
1095
+ "line": 3,
1096
+ "character": 14
1097
+ },
1098
+ "signature": "const GitAspect: Aspect",
1099
+ "name": "GitAspect",
1100
+ "type": {
1101
+ "__schema": "TypeRefSchema",
1102
+ "location": {
1103
+ "filePath": "git.aspect.ts",
1104
+ "line": 3,
1105
+ "character": 14
1106
+ },
1107
+ "name": "Aspect",
1108
+ "componentId": {
1109
+ "scope": "teambit.harmony",
1110
+ "name": "harmony",
1111
+ "version": "0.4.6"
1112
+ }
1113
+ },
1114
+ "isOptional": false,
1115
+ "defaultValue": "Aspect.create({\n id: 'teambit.git/git',\n})"
1116
+ }
1117
+ ],
1118
+ "internals": []
1119
+ }
1120
+ ],
1121
+ "componentId": {
1122
+ "scope": "teambit.git",
1123
+ "name": "git",
1124
+ "version": "1.0.160"
1125
+ },
1126
+ "taggedModuleExports": []
1127
+ }
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/git",
3
- "version": "1.0.158",
3
+ "version": "1.0.160",
4
4
  "homepage": "https://bit.cloud/teambit/git/git",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.git",
8
8
  "name": "git",
9
- "version": "1.0.158"
9
+ "version": "1.0.160"
10
10
  },
11
11
  "dependencies": {
12
12
  "chalk": "2.4.2",
@@ -14,14 +14,14 @@
14
14
  "gitconfig": "2.0.8",
15
15
  "@teambit/harmony": "0.4.6",
16
16
  "@teambit/bit-error": "0.0.404",
17
- "@teambit/cli": "0.0.850",
18
- "@teambit/workspace": "1.0.158"
17
+ "@teambit/cli": "0.0.851",
18
+ "@teambit/workspace": "1.0.160"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@types/fs-extra": "9.0.7",
22
22
  "@types/mocha": "9.1.0",
23
23
  "chai": "4.3.0",
24
- "@teambit/harmony.envs.core-aspect-env": "0.0.24"
24
+ "@teambit/harmony.envs.core-aspect-env": "0.0.25"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "@teambit/legacy": "1.0.624"