-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
Copy pathswift.ts
1606 lines (1603 loc) · 47.3 KB
/
swift.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { keyValue } from "@fig/autocomplete-generators";
const commonOptions: Fig.Option[] = [
{
name: ["--help", "-h", "-help"],
description: "Show help information",
},
{
name: "--version",
description: "Show the version",
},
];
const completionSpec: Fig.Spec = {
name: "swift",
description: "Swift compiler",
parserDirectives: {
flagsArePosixNoncompliant: true,
},
options: [
...commonOptions,
{
name: "-access-notes-path",
description:
"Specify YAML file to override attributes on Swift declarations in this module",
args: {
name: "path",
description:
"Specify YAML file to override attributes on Swift declarations in this module",
},
},
{
name: "-assert-config",
description: "Specify the assert_configuration replacement",
args: {
name: "configuration",
description: "The assert_configuration replacement",
suggestions: ["Debug", "Release", "Unchecked", "DisableReplacement"],
},
},
{
name: "-async-main",
description:
"Resolve main function as if it were called from an asynchronous context",
},
{
name: "-clang-target",
description:
"Separately set the target we should use for internal Clang instance",
args: {
name: "target",
description: "The target we should use for internal Clang instance",
},
},
{
name: "-color-diagnostics",
description: "Print diagnostics in color",
},
{
name: "-continue-building-after-errors",
description: "Continue building, even after errors are encountered",
},
{
name: "-coverage-prefix-map",
description: "Remap source paths in coverage info",
args: {
name: "prefix",
description: "The remap source paths in coverage info",
generators: keyValue({
separator: "=",
}),
},
},
{
name: "-debug-info-format",
description: "Specify the debug info format type",
dependsOn: ["-g"],
requiresSeparator: true,
args: {
name: "type",
description: "The debug info format type",
suggestions: ["dwarf", "codeview"],
},
},
{
name: "-debug-info-store-invocation",
description: "Emit the compiler invocation in the debug info",
},
{
name: "-debug-prefix-map",
description: "Remap source paths in debug info",
args: {
name: "prefix=replacement",
description: "The remap source paths in debug info",
generators: keyValue({
separator: "=",
}),
},
},
{
name: "-diagnostic-style",
description: "The formatting style used when printing diagnostics",
args: {
name: "style",
description: "The formatting style used when printing diagnostics",
suggestions: ["swift", "llvm"],
},
},
{
name: "-disable-actor-data-race-checks",
description: "Disable runtime checks for actor data races",
},
{
name: "-disable-autolinking-runtime-compatibility-concurrency",
description:
"Do not use autolinking for the concurrency runtime compatibility library",
},
{
name: "-disable-autolinking-runtime-compatibility-dynamic-replacements",
description:
"Do not use autolinking for the dynamic replacement runtime compatibility library",
},
{
name: "-disable-autolinking-runtime-compatibility",
description: "Do not use autolinking for runtime compatibility libraries",
},
{
name: "-disable-clang-target",
description:
"Disable a separately specified target triple for Clang instance to use",
},
{
name: "-disable-incremental-imports",
description:
"Disable cross-module incremental build metadata and driver scheduling for Swift modules",
},
{
name: "-disable-only-one-dependency-file",
description:
"Disables incremental build optimization that only produces one dependencies file",
},
{
name: "-disallow-use-new-driver",
description: "Disable using new swift-driver",
},
{
name: "-D",
description: "Marks a conditional compilation flag as true",
args: {
name: "flag",
description: "The conditional compilation flag to mark as true",
},
},
{
name: "-embed-tbd-for-module",
description: "Embed symbols from the module in the emitted tbd file",
args: {
name: "module",
description: "Embed symbols from the module in the emitted tbd file",
},
},
{
name: "-enable-actor-data-race-checks",
description: "Emit runtime checks for actor data races",
},
{
name: "-enable-bare-slash-regex",
description:
"Enable the use of forward slash regular-expression literal syntax",
},
{
name: "-enable-experimental-additive-arithmetic-derivation",
description:
"Enable experimental 'AdditiveArithmetic' derived conformances",
},
{
name: "-enable-experimental-concise-pound-file",
description: "Enable experimental concise '#file' identifier",
},
{
name: "-enable-experimental-cxx-interop",
description:
"Allow importing C++ modules into Swift (experimental feature)",
},
{
name: "-enable-experimental-forward-mode-differentiation",
description: "Enable experimental forward mode differentiation",
},
{
name: "-enable-incremental-imports",
description:
"Enable cross-module incremental build metadata and driver scheduling for Swift modules",
},
{
name: "-enable-library-evolution",
description:
"Build the module to allow binary-compatible library evolution",
},
{
name: "-enable-only-one-dependency-file",
description:
"Enables incremental build optimization that only produces one dependencies file",
},
{
name: "-enforce-exclusivity",
description: "Enforce law of exclusivity",
requiresSeparator: true,
args: {
name: "enforcement",
description: "Enforce law of exclusivity",
},
},
{
name: "-experimental-cxx-stdlib",
description:
"C++ standard library to use; forwarded to Clang's -std lib flag",
args: {
name: "stdlib",
description:
"C++ standard library to use; forwarded to Clang's -std lib flag",
},
},
{
name: "-file-compilation-dir",
description:
"The compilation directory to embed in the debug info. Coverage mapping is not supported yet",
args: {
name: "path",
description: "The compilation directory to embed in the debug info",
},
},
{
name: "-file-prefix-map",
description: "Remap source paths in debug, coverage, and index info",
args: {
name: "prefix",
description:
"The remap source paths in debug, coverage, and index info",
generators: keyValue({
separator: "=",
}),
},
},
{
name: "-framework",
description: "Specifies a framework which should be linked against",
args: {
name: "framework",
description: "The framework which should be linked against",
},
},
{
name: "-Fsystem",
description: "Add directory to system framework search path",
args: {
name: "directory",
description: "The directory to add to the system framework search path",
},
},
{
name: "-F",
description: "Add directory to framework search path",
args: {
name: "directory",
description: "The directory to add to the framework search path",
},
},
{
name: "-gdwarf-types",
description: "Emit full DWARF type info",
},
{
name: "-gline-tables-only",
description: "Emit minimal debug info for backtraces only",
},
{
name: "-gnone",
description: "Don't emit debug info",
},
{
name: "-g",
description:
"Emit debug info. This is the preferred setting for debugging with LLDB",
},
{
name: "-index-ignore-clang-modules",
description: "Avoid indexing clang modules (pcms)",
},
{
name: "-index-store-path",
description: "Store indexing data to path",
args: {
name: "path",
description: "The path to store indexing data to",
},
},
{
name: "-index-unit-output-path",
description:
"Use the specified path as the output path in the produced index data",
args: {
name: "path",
description:
"The specified path as the output path in the produced index data",
},
},
{
name: "-I",
description: "Add directory to the import search path",
args: {
name: "directory",
description: "The directory to add to the import search path",
},
},
{
name: "-j",
description: "Number of commands to execute in parallel",
args: {
name: "value",
description: "The number of commands to execute in parallel",
},
},
{
name: "-libc",
description: "The libc runtime library to use",
args: {
name: "runtime",
description: "The libc runtime library to use",
},
},
{
name: "-locale",
description: "Choose a language for diagnostic messages",
args: {
name: "code",
description: "The locale code",
},
},
{
name: "-localization-path",
description: "Path to localized diagnostic messages directory",
args: {
name: "path",
description: "The path to localized diagnostic messages directory",
},
},
{
name: "-L",
description: "Add directory to library link search path",
args: {
name: "directory",
description: "The directory to add to the library link search path",
},
},
{
name: "-l",
description: "Specifies a library which should be linked against",
args: {
name: "path",
description: "Specifies a library which should be linked against",
},
},
{
name: "-module-abi-name",
description: "ABI name to use for the contents of this module",
args: {
name: "name",
description: "The ABI name to use for the contents of this module",
},
},
{
name: "-module-alias",
description:
"If a source file imports or references module <alias_name>, the <underlying_name> is used for the contents of the file",
args: {
name: "alias",
description: "The module alias and the contents of the file to be used",
generators: keyValue({
separator: "=",
}),
},
},
{
name: "-module-cache-path",
description: "Specifies the Clang module cache path",
args: {
name: "path",
description: "Specifies the Clang module cache path",
},
},
{
name: "-module-link-name",
description: "Library to link against when using this module",
args: {
name: "name",
description: "Library to link against when using this module",
},
},
{
name: "-module-name",
description: "Name of the module to build",
args: {
name: "name",
description: "Name of the module to build",
},
},
{
name: "-no-color-diagnostics",
description: "Do not print diagnostics in color",
},
{
name: "-no-warnings-as-errors",
description: "Don't treat warnings as error",
},
{
name: "-nostdimport",
description: "Don't search the standard library import path for modules",
},
{
name: "-num-threads",
description: "Enable multi-threading and specify number of threads",
args: {
name: "value",
description: "The number of threads",
},
},
{
name: "-Onone",
description: "Compile without any optimization",
},
{
name: "-Osize",
description: "Compile with optimizations and target small code size",
},
{
name: "-Ounchecked",
description:
"Compile with optimizations and remove runtime safety checks",
},
{
name: "-O",
description: "Compile with optimizations",
},
{
name: "-prefix-serialized-debugging-options",
description:
"Apply debug prefix mappings to serialized debug info in Swiftmodule files",
},
{
name: "-pretty-print",
description: "Pretty-print the output JSON",
},
{
name: "-print-educational-notes",
description:
"Include educational notes in printed diagnostic output, if available",
},
{
name: "-print-target-info",
description:
"Print target information for the given target <triple>, such as x86_64-apple-macos10.9",
},
{
name: "-Rcross-import",
description: "Emit a remark if a cross-import of a module is triggered",
},
{
name: "-remove-runtime-asserts",
description: "Remove runtime safety checks",
},
{
name: "-requirement-machine-abstract-signatures",
description:
"Control usage of experimental generic signature minimization",
requiresSeparator: true,
args: {
name: "value",
description:
"The control usage of experimental generic signature minimization",
suggestions: ["on", "off", "verify", "check"],
},
},
{
name: "-requirement-machine-inferred-signatures",
description:
"Control usage of experimental generic signature minimization",
requiresSeparator: true,
args: {
name: "value",
description:
"The control usage of experimental generic signature minimization",
suggestions: ["on", "off", "verify", "check"],
},
},
{
name: "-requirement-machine-protocol-signatures",
description:
"Control usage of experimental protocol requirement signature minimization",
requiresSeparator: true,
args: {
name: "value",
description:
"The control usage of experimental protocol requirement signature minimization",
suggestions: ["on", "off", "verify", "check"],
},
},
{
name: "-Rmodule-loading",
description: "Emit a remark and file path of each loaded module",
},
{
name: "-Rpass-missed",
description:
"Report missed transformations by optimization passes whose name matches the given POSIX regular expression",
requiresSeparator: true,
args: {
name: "regex",
description: "Regex to match missed transformations",
},
},
{
name: "-Rpass",
description:
"Report performed transformations by optimization passes whose name matches the given POSIX regular expression",
requiresSeparator: true,
args: {
name: "regex",
description: "Regex to match performed transformations",
},
},
{
name: "-runtime-compatibility-version",
description:
"Link compatibility library for Swift runtime version, or 'none'",
args: {
name: "version",
description: "Swift runtime version, or 'none'",
},
},
{
name: "-save-optimization-record-passes",
description:
"Only include passes which match a specified regular expression in the generated optimization record (by default, include all passes)",
args: {
name: "regex",
description:
"Regex to specify passes to be included in the optimization record",
},
},
{
name: "-save-optimization-record-path",
description: "Specify the file name of any generated optimization record",
args: {
name: "filename",
description: "The file name of any generated optimization record",
},
},
{
name: "-save-optimization-record",
description: "Generate an optimization record file in a specific format",
requiresSeparator: true,
args: {
name: "format",
description: "The format",
default: "YAML",
},
},
{
name: "-save-optimization-record",
description: "Generate a YAML optimization record file",
},
{
name: "-sdk",
description: "Compile against a specific SDK",
args: {
name: "sdk",
description: "The SDK to compile against",
},
},
{
name: "-serialize-diagnostics-path",
description: "Emit a serialized diagnostics file",
args: {
name: "path",
description: "The path to write the file to",
},
},
{
name: "-static-executable",
description: "Statically link the executable",
},
{
name: "-static-stdlib",
description: "Statically link the Swift standard library",
},
{
name: "-strict-concurrency",
description: "Specify the how strict concurrency checking will be",
requiresSeparator: true,
args: {
name: "concurrency",
description: "The concurrency",
suggestions: ["minimal", "targeted", "complete"],
},
},
{
name: "-suppress-warnings",
description: "Suppress all warnings",
},
{
name: "-swift-isa-ptrauth-mode",
description: "Mode for staging isa/super signing",
args: {
name: "mode",
description: "Mode for staging isa/super signing",
suggestions: ["LegacyAndStrip", "NewAndStrip", "NewAndAuth"],
},
},
{
name: "-swift-ptrauth-mode",
description: "Mode for staging pointer authentication",
args: {
name: "mode",
description: "Mode for staging pointer authentication",
suggestions: ["LegacyAndStrip", "NewAndStrip", "NewAndAuth"],
},
},
{
name: "-swift-version",
description:
"Interpret input according to a specific Swift language version number",
args: {
name: "version",
description: "Swift language version number",
},
},
{
name: "-target-cpu",
description: "Generate code for a particular CPU variant",
args: {
name: "cpu",
description: "The CPU variant",
},
},
{
name: "-target-min-inlining-version",
description:
"Require inlinable code with no '@available' attribute to back-deploy to this version of the '-target' OS",
args: {
name: "version",
description: "The target version",
},
},
{
name: "-target-variant",
description:
"Generate 'zippered' code for macCatalyst that can run on the specified variant target triple in addition to the main -target triple",
args: {
name: "variant",
description: "The target variant",
},
},
{
name: "-target",
description:
"Generate code for the given target <triple>, such as x86_64-apple-macos10.9",
args: {
name: "triple",
description: "The target triple",
},
},
{
name: "-use-ld",
description: "Specifies the linker to be used",
requiresSeparator: true,
args: {
name: "linker",
description: "The linker to be used",
},
},
{
name: "-user-module-version",
description: "Module version specified from Swift module authors",
args: {
name: "module",
description: "The module version",
},
},
{
name: "-vfsoverlay",
description: "Add directory to VFS overlay file",
args: {
name: "directory",
description: "The directory to the VFS overlay file",
},
},
{
name: "-v",
description: "Show commands to run and use verbose output",
},
{
name: "-warn-concurrency",
description:
"Warn about code that is unsafe according to the Swift Concurrency model and will become ill-formed in a future language version",
},
{
name: "-warn-implicit-overrides",
description: "Warn about implicit overrides of protocol members",
},
{
name: "-warn-swift3-objc-inference-complete",
description:
"Warn about deprecated @objc inference in Swift 3 for every declaration that will no longer be inferred as @objc in Swift 4",
},
{
name: "-warn-swift3-objc-inference-minimal",
description:
"Warn about deprecated @objc inference in Swift 3 based on direct uses of the Objective-C entrypoint",
},
{
name: "-warnings-as-errors",
description: "Treat warnings as errors",
},
{
name: "-working-directory",
description: "Resolve file paths relative to the specified directory",
args: {
name: "directory",
description: "Resolve file paths relative to the specified directory",
},
},
{
name: "-Xcc",
description: "Pass <arg> to the C/C++/Objective-C compiler",
args: {
name: "arg",
description: "Argument to pass to the C/C++/Objective-C compiler",
},
},
{
name: "-Xlinker",
description: "Specifies an option which should be passed to the linker",
args: {
name: "arg",
description: "Option to be passed to the linker",
},
},
],
subcommands: [
// swift build
{
name: "build",
description: "Build sources into binary products",
options: [
...commonOptions,
{
name: "--build-tests",
description: "Build both source and test targets",
},
{
name: "--show-bin-path",
description: "Print the binary output path",
},
{
name: "--target",
description: "Build the specified target",
args: {
name: "target",
description: "The name of the target to build",
},
},
{
name: "--product",
description: "Build the specified product",
args: {
name: "product",
description: "The name of the product to build",
},
},
],
},
// swift run
{
name: "run",
description: "Build and run an executable product",
options: [
...commonOptions,
{
name: "--skip-build",
description: "Skip building the executable product",
},
{
name: "--build-tests",
description: "Build both source and test targets",
},
{
name: "--repl",
description: "Launch Swift REPL for the package",
},
],
args: [
{
name: "executable",
description: "The executable to run",
isOptional: true,
},
{
name: "arguments",
description: "The arguments to pass to the executable",
isOptional: true,
},
],
},
// swift test
{
name: "test",
description: "Build and run tests",
options: [
...commonOptions,
{
name: "--skip-build",
description: "Skip building the test target",
},
{
name: "--parallel",
description: "Run the tests in parallel",
},
{
name: "--num-workers",
description: "Number of tests to execute in parallel",
args: {
name: "num-workers",
description: "Number of tests to execute in parallel",
},
},
{
name: ["-l", "--list-tests"],
description: "Lists test methods in specifier format",
},
{
name: "--show-codecov-path",
description: "Print the path of the exported code coverage JSON file",
},
{
name: ["-s", "--specifier"],
description: "",
},
{
name: "--filter",
description: "Run test cases matching regular expression",
args: {
name: "regex",
description:
"<test-target>.<test-case> or <test-target>.<test-case>/<test>",
},
},
{
name: "--skip",
description: "Skip test cases matching regular expression",
args: {
name: "regex",
description:
"<test-target>.<test-case> or <test-target>.<test-case>/<test>",
},
},
{
name: "--xunit-output",
description: "Path where the xUnit xml file should be generated",
args: {
name: "path",
description: "Path where the xUnit xml file should be generated",
},
},
{
name: "--test-product",
description: "Test the specified product",
args: {
name: "product",
description: "The product to be tested",
},
},
],
},
// swift package
{
name: "package",
description: "Perform operations on Swift packages",
options: [
...commonOptions,
{
name: "-Xcc",
description: "Pass a flag through to all C compiler invocations",
args: {
name: "flag",
description:
"The flag to pass through to all C compiler invocations",
},
},
{
name: "-Xswiftc",
description: "Pass a flag through to all Swift compiler invocations",
args: {
name: "flag",
description:
"The flag to pass through to all Swift compiler invocations",
},
},
{
name: "-Xlinker",
description: "Pass a flag through to all linker invocations",
args: {
name: "flag",
description: "The flag to pass through to all linker invocations",
},
},
{
name: ["-c", "--configuration"],
description: "Build with configuration (default: debug)",
args: {
name: "configuration",
description: "The build configuration",
suggestions: ["debug", "release"],
},
},
{
name: "--build-path",
description: "Specify build/cache directory",
args: {
name: "path",
description: "The path to a specific build/cache directory",
},
},
{
name: "--cache-path",
description: "Specify the shared cache directory",
args: {
name: "path",
description: "The path to a specific shared cache directory",
},
},
{
name: "--enable-repository-cache",
description:
"Enable the use of a shared cache when fetching repositories (default: enabled)",
exclusiveOn: ["--disable-repository-cache"],
},
{
name: "--disable-repository-cache",
description:
"Disable the use of a shared cache when fetching repositories (default: enabled)",
exclusiveOn: ["--enable-repository-cache"],
},
{
name: ["-C", "--chdir"],
description:
"The custom working directory that the tool should operate in",
deprecated: true,
args: {
name: "chdir",
description: "",
},
},
{
name: "--package-path",
description: "Change working directory before any other operation",
args: {
name: "path",
description: "The working directory path to change to",
},
},
{
name: "--multiroot-data-file",
description:
"The path to the file containing multiroot package data. This is currently Xcode's workspace file",
args: {
name: "multiroot-data-file",
description: "",
},
},
{
name: "--enable-prefetching",
description:
"Enable prefetching in resolver which will kick off parallel git cloning (default: enabled)",
exclusiveOn: ["--disable-prefetching"],
},
{
name: "--disable-prefetching",
description:
"Disable prefetching in resolver which will kick off parallel git cloning (default: enabled)",
exclusiveOn: ["--enable-prefetching"],
},
{
name: ["-v", "--verbose"],
description: "Increase verbosity of informational output",
},
{
name: "--disable-sandbox",
description: "Disable using the sandbox when executing subprocesses",
},
{