forked from SchemaStore/schemastore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cargo-make.json
1494 lines (1494 loc) · 50 KB
/
cargo-make.json
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
{
"$id": "https://github.com/sagiegurari/cargo-make",
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"definitions": {
"semver": {
"title": "Semantic Version",
"type": "string",
"pattern": "^(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)(?:-((?:0|[1-9][0-9]*|[0-9]*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9][0-9]*|[0-9]*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$"
},
"extend": {
"title": "External Makefile",
"description": "A potentially optional external makefile to extend",
"type": "object",
"x-taplo": {
"initKeys": ["optional"]
},
"required": ["path"],
"additionalProperties": false,
"properties": {
"path": {
"title": "File Path",
"description": "The path of the external makefile, relative to this file",
"type": "string",
"default": "path/to/Makefile.toml"
},
"optional": {
"description": "If true, the external makefile is optional and does not need to exist",
"type": "boolean",
"default": true
}
}
},
"script": {
"title": "Script",
"oneOf": [
{
"title": "Script Line",
"type": "string"
},
{
"title": "Script Lines",
"type": "array",
"items": {
"type": "string"
}
},
{
"title": "Script File",
"type": "object",
"examples": [
{
"file": "path/to/script"
},
{
"file": "path/to/script",
"absolute_path": true
}
],
"required": ["file"],
"additionalProperties": false,
"properties": {
"file": {
"title": "File Path",
"description": "Scipt file name",
"type": "string",
"default": "path/to/script"
},
"absolute_path": {
"description": "If true, the `file` value is an absolute path",
"default": true,
"type": "boolean"
}
}
},
{
"title": "Split Script",
"description": "Script content split to parts to enable a more fine tuned extension capability",
"type": "object",
"x-taplo": {
"initKeys": ["pre", "main", "post"]
},
"additionalProperties": false,
"properties": {
"pre": {
"title": "Pre-Main Script",
"description": "Pre-main script section",
"type": "string"
},
"main": {
"title": "Main Script",
"description": "Main script section",
"type": "string"
},
"post": {
"title": "Post-Main Script",
"description": "Post-main script section",
"type": "string"
}
}
}
]
},
"env_files": {
"title": "List of Env Files",
"description": "Load environment files",
"type": "array",
"default": [],
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-env-file"
}
},
"items": {
"$ref": "#/definitions/envfile"
},
"uniqueItems": true
},
"envfile": {
"title": "Env File",
"description": "File containing environment variables and their values",
"examples": [
"path/to/env.env",
{
"path": "path/to/env.env",
"profile": "development"
}
],
"oneOf": [
{
"title": "File Path",
"description": "The path to the env file",
"type": "string",
"default": "path/to/env.env"
},
{
"description": "The env file path and attributes",
"type": "object",
"x-taplo": {
"initKeys": ["profile"]
},
"required": ["path"],
"additionalProperties": false,
"properties": {
"path": {
"title": "File Path",
"description": "The path to the env file",
"type": "string",
"default": "path/to/env.env"
},
"base_path": {
"title": "Directory Path",
"description": "The path base directory (relative paths are from this base path)",
"type": "string",
"default": "path/to/dir"
},
"profile": {
"title": "Profile",
"description": "The profile name this file is relevant to",
"type": "string",
"default": "development",
"examples": ["development", "production"]
}
}
}
]
},
"env": {
"title": "Env Vars",
"description": "Setup environment variables",
"type": "object",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-env-config"
}
},
"additionalProperties": {
"$ref": "#/definitions/env_value"
}
},
"env_value": {
"title": "Env Value",
"description": "An environment variable value",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-env"
}
},
"anyOf": [
{
"title": "Boolean",
"type": "boolean"
},
{
"title": "Integer",
"type": "integer"
},
{
"title": "String",
"type": "string"
},
{
"title": "Separator List",
"description": "An array which will be joined with the `;` separator ",
"type": "array",
"items": {
"type": "string"
}
},
{
"$ref": "#/definitions/env_value_unset"
},
{
"$ref": "#/definitions/env_value_script"
},
{
"$ref": "#/definitions/env_value_decode"
},
{
"$ref": "#/definitions/env_value_conditioned"
},
{
"$ref": "#/definitions/env_value_path_glob"
},
{
"title": "Profile Env Vars",
"description": "Profile dependent environment variables",
"$ref": "#/definitions/env"
}
]
},
"env_value_unset": {
"title": "Unset",
"description": "Unsets environment variable",
"type": "object",
"required": ["unset"],
"additionalProperties": false,
"properties": {
"unset": {
"description": "If true, the env variable will be unset, else ignored",
"default": true,
"type": "boolean"
}
}
},
"env_value_script": {
"title": "Env Value Script",
"description": "Provide environment variable via script",
"type": "object",
"required": ["script"],
"additionalProperties": false,
"properties": {
"script": {
"title": "Script Lines",
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"multi_line": {
"description": "Enable multi-line values",
"default": true,
"type": "boolean"
}
}
},
"env_value_decode": {
"title": "Env Value Mapping",
"description": "Environment variable value provided by decoding other values",
"type": "object",
"x-taplo": {
"initKeys": ["default_value"]
},
"required": ["source", "mapping"],
"additionalProperties": false,
"properties": {
"source": {
"title": "Env Var",
"description": "The source environment variable (can be an env expression)",
"type": "string"
},
"default_value": {
"title": "Env Value",
"description": "The default value in case no decode mapping was found, if not provided it will default to the source value",
"type": "string"
},
"mapping": {
"title": "Value Mapping",
"description": "The decoding mapping from one value to another value",
"type": "object",
"default": {},
"additionalProperties": {
"title": "Env Value",
"type": "string"
}
}
}
},
"env_value_conditioned": {
"title": "Conditional Env Value",
"description": "Environment variable value set if condition is met",
"type": "object",
"x-taplo": {
"initKeys": ["condition"]
},
"required": ["value"],
"additionalProperties": false,
"properties": {
"value": {
"title": "Env Value",
"description": "The value to set (can be an env expression)",
"type": "string"
},
"condition": {
"description": "Condition to evaluate to see whether to set the environment value or not",
"$ref": "#/definitions/task_condition"
}
}
},
"env_value_path_glob": {
"title": "Env Value Glob",
"description": "Environment value holding a list of paths based on given glob definitions",
"type": "object",
"required": ["glob"],
"additionalProperties": false,
"properties": {
"glob": {
"title": "Glob Pattern",
"description": "The glob used to fetch all paths",
"type": "string"
},
"include_files": {
"description": "If true, include files in glob",
"default": true,
"type": "boolean"
},
"include_dirs": {
"description": "If true, include directories in glob",
"default": true,
"type": "boolean"
},
"ignore_type": {
"title": "Ignore Source",
"description": "An ignore source that enables respecting ignore files from that source",
"enum": ["git"],
"type": "string",
"default": "git"
}
}
},
"task_condition": {
"title": "Condition",
"description": "Conditions allow you to evaluate at runtime if to run a specific task or not",
"type": "object",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-conditions"
}
},
"additionalProperties": false,
"properties": {
"fail_message": {
"title": "Message",
"description": "Message to display when the condition fails",
"type": "string"
},
"profiles": {
"title": "List of Profiles",
"description": "Profile names to match for the condition",
"type": "array",
"default": [],
"items": {
"title": "Profile",
"description": "Profile name",
"type": "string",
"default": "development"
}
},
"platforms": {
"title": "List of Platforms",
"description": "Platform names to match for the condition",
"type": "array",
"items": {
"title": "Platform",
"description": "Platform name",
"enum": ["linux", "windows", "mac"],
"type": "string"
}
},
"channels": {
"title": "List of Channels",
"description": "Rust channels to match for the condition",
"type": "array",
"items": {
"title": "Channel",
"description": "Rust channel",
"enum": ["stable", "beta", "nightly"],
"type": "string",
"default": "stable"
}
},
"env_set": {
"title": "List of Env Vars",
"description": "List of environment variables which must be defined",
"type": "array",
"items": {
"title": "Env Var",
"description": "Environment variable",
"type": "string"
}
},
"env_not_set": {
"title": "List of Env Vars",
"description": "List of environment variables which must not be defined",
"type": "array",
"items": {
"title": "Env Var",
"description": "Environment variable",
"type": "string"
}
},
"env_true": {
"title": "List of Env Vars",
"description": "List of environment variables which must be defined and must not be set to any of the following (case insensitive): `false`, `no`, `0`, or empty",
"type": "array",
"items": {
"title": "Env Var",
"description": "Environment variable",
"type": "string"
}
},
"env_false": {
"title": "List of Env Vars",
"description": "List of environment variables which must be defined and must be set to any of the following (case insensitive): `false`, `no`, `0`, or empty",
"type": "array",
"items": {
"title": "Env Var",
"description": "Environment variable",
"type": "string"
}
},
"env": {
"title": "Env Vars",
"description": "Map of environment variables that must be defined and equal to the provided values",
"type": "object",
"additionalProperties": {
"title": "Env Value",
"description": "Environment value",
"type": "string"
}
},
"env_contains": {
"title": "Env Vars",
"description": "Map of environment variables that must be defined and contain (case insensitive) the provided values",
"type": "object",
"additionalProperties": {
"title": "Env Value",
"description": "Environment value",
"type": "string"
}
},
"rust_version": {
"title": "Rust Version Criteria",
"description": "A definition of min, max and/or specific rust version",
"type": "object",
"x-taplo": {
"initKeys": ["min"]
},
"additionalProperties": false,
"properties": {
"min": {
"description": "Minimum Rust version",
"$ref": "#/definitions/semver"
},
"max": {
"description": "Maximum Rust version",
"$ref": "#/definitions/semver"
},
"equal": {
"description": "Exact Rust version",
"$ref": "#/definitions/semver"
}
}
},
"files_exist": {
"title": "List of Files",
"description": "List of absolute path files to check they exist. Environment substitution is supported so you can define relative paths",
"type": "array",
"items": {
"title": "File Path",
"description": "File path",
"type": "string"
}
},
"files_not_exist": {
"title": "List of Files",
"description": "List of absolute path files to check they do not exist. Environment substitution is supported so you can define relative paths",
"type": "array",
"items": {
"title": "File Path",
"description": "File path",
"type": "string"
}
},
"files_modified": {
"title": "Lists input and output globs",
"description": "If any input file is newer than all output files, the condition is met. Environment substitution is supported so you can define relative paths",
"type": "object",
"additionalProperties": false,
"properties": {
"input": {
"description": "List of input globs",
"type": "array",
"items": {
"description": "glob",
"type": "string"
}
},
"output": {
"description": "List of output globs",
"type": "array",
"items": {
"description": "glob",
"type": "string"
}
}
}
}
}
},
"task": {
"title": "Task",
"description": "A task is a command, script, rust code or other sub tasks to execute. Tasks can have dependencies which are also tasks that will be executed before the task itself.",
"type": "object",
"additionalProperties": false,
"properties": {
"clear": {
"description": "If true, it should ignore all data in the base task",
"default": true,
"type": "boolean",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-default-tasks"
}
}
},
"description": {
"title": "Description",
"description": "A description used to document the task",
"type": "string"
},
"category": {
"title": "Category",
"description": "Category name used to document the task",
"type": "string"
},
"disabled": {
"description": "If true, the command/script of this task will not be invoked, but dependencies will be",
"default": true,
"type": "boolean",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-default-tasks"
}
}
},
"private": {
"description": "If true, the task is hidden from the list of available tasks and also cannot be invoked directly from CLI",
"default": true,
"type": "boolean",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-private-tasks"
}
}
},
"deprecated": {
"description": "If set, this task is documented as deprecated. This can be a boolean or a string deprecation message.",
"default": true,
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-deprecated-tasks"
}
},
"oneOf": [
{
"type": "boolean"
},
{
"title": "Deprecation Message",
"type": "string"
}
]
},
"extend": {
"title": "Task Name",
"description": "Extends the specified task as a base task",
"type": "string",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-extend-attribute"
}
}
},
"workspace": {
"description": "Set to false to specify that this is not a workspace and should not call the task for every member (same as --no-workspace CLI flag)",
"default": false,
"type": "boolean",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-workspace-disabling-workspace-support"
}
}
},
"watch": {
"description": "Watch for file changes and invoke the task operation",
"default": true,
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-watch"
}
},
"oneOf": [
{
"type": "boolean"
},
{
"title": "Watch Options",
"type": "object",
"x-taplo": {
"initKeys": ["watch"]
},
"additionalProperties": false,
"properties": {
"version": {
"description": "Version of cargo-watch to install if it's not already installed",
"$ref": "#/definitions/semver"
},
"postpone": {
"description": "Postpone first run until a file changes",
"default": true,
"type": "boolean"
},
"ignore_pattern": {
"title": "Glob Pattern",
"description": "Ignore a glob/gitignore-style pattern while watching",
"type": "string"
},
"no_git_ignore": {
"description": "Do not use .gitignore files while watching",
"default": true,
"type": "boolean"
},
"watch": {
"title": "List of Paths",
"description": "List of files and folders to watch",
"type": "array",
"items": {
"title": "Path",
"description": "File or folder to watch",
"type": "string"
}
}
}
}
]
},
"condition": {
"description": "If provided all condition values must be met in order for the task to be invoked (will not stop dependencies)",
"$ref": "#/definitions/task_condition"
},
"condition_script": {
"title": "Script",
"description": "If script exit code is not 0, the command/script of this task will not be invoked, dependencies however will be",
"type": "array",
"items": {
"type": "string"
},
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-conditions-script"
}
}
},
"ignore_errors": {
"description": "If true, any error while executing the task will be printed but will not break the build",
"default": true,
"type": "boolean",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-ignoring-errors"
}
}
},
"force": {
"description": "DEPRECATED, replaced with `ignore_errors`",
"default": true,
"type": "boolean",
"deprecated": true,
"x-taplo": {
"hidden": true
}
},
"env_files": {
"description": "The env files to setup before running the task commands",
"$ref": "#/definitions/env_files"
},
"env": {
"description": "The env vars to setup before running the task commands",
"$ref": "#/definitions/env"
},
"cwd": {
"title": "Directory Path",
"description": "The working directory for the task to execute its command/script",
"type": "string",
"default": "path/to/dir"
},
"alias": {
"title": "Task Name",
"description": "If defined, task points to another task and all other properties are ignored",
"type": "string",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-dependencies-alias"
}
}
},
"linux_alias": {
"title": "Task Name",
"description": "If defined and this platform is Linux, task points to another task and all other properties are ignored (takes precedence over `alias` on Linux)",
"type": "string",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-dependencies-alias"
}
}
},
"windows_alias": {
"title": "Task Name",
"description": "If defined and this platform is Windows, task points to another task and all other properties are ignored (takes precedence over `alias` on Windows)",
"type": "string",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-dependencies-alias"
}
}
},
"mac_alias": {
"title": "Task Name",
"description": "If defined and this platform is Mac, task points to another task and all other properties are ignored (takes precedence over `alias` on Mac)",
"type": "string",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-dependencies-alias"
}
}
},
"install_crate": {
"description": "Indicates the provided crate needs to be installed (if needed) before running the task",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-installing-crates"
}
},
"oneOf": [
{
"description": "If set to false, will disable crate installation from the base task",
"default": false,
"type": "boolean"
},
{
"title": "Crate Name",
"description": "Name of the crate to install",
"type": "string"
},
{
"title": "Crate Install Options",
"description": "Instructions on how to install a crate",
"type": "object",
"required": ["crate_name", "binary", "test_arg"],
"additionalProperties": false,
"properties": {
"crate_name": {
"title": "Crate Name",
"description": "Name of the crate to install",
"type": "string"
},
"rustup_component_name": {
"title": "Component Name",
"description": "The component to install via rustup",
"type": "string"
},
"binary": {
"title": "File Name",
"description": "The binary file name to be used to test if the crate is already installed",
"type": "string"
},
"test_arg": {
"title": "Args",
"description": "Arguments used to check whether a crate or rustup component is installed.",
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"min_version": {
"description": "Minimum version of installed crate before it needs to be reinstalled",
"$ref": "#/definitions/semver"
},
"version": {
"description": "Exact version of installed crate",
"$ref": "#/definitions/semver"
},
"install_command": {
"title": "Install Command",
"description": "The alternative cargo install command to install the crate",
"type": "string"
}
}
},
{
"title": "Component Install Options",
"description": "Instructions on how to install a rustup component",
"type": "object",
"required": ["rustup_component_name"],
"additionalProperties": false,
"properties": {
"rustup_component_name": {
"title": "Component Name",
"description": "The component to install via rustup",
"type": "string"
},
"binary": {
"title": "File Name",
"description": "The binary file name to be used to test if the crate is already installed",
"type": "string"
},
"test_arg": {
"title": "Args",
"description": "Arguments used to check whether a crate or rustup component is installed.",
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
}
},
{
"title": "Plugin Install Options",
"description": "Instructions on how to install a cargo plugin",
"type": "object",
"required": ["crate_name", "min_version"],
"additionalProperties": false,
"properties": {
"crate_name": {
"title": "Crate Name",
"description": "Name of the crate to install",
"type": "string"
},
"min_version": {
"description": "Minimum version of installed crate before it needs to be reinstalled",
"$ref": "#/definitions/semver"
}
}
}
]
},
"install_crate_args": {
"title": "Args",
"description": "Additional cargo install args",
"type": "array",
"items": {
"type": "string"
}
},
"install_script": {
"description": "Provided script will be executed before running the task",
"$ref": "#/definitions/script"
},
"command": {
"title": "File Name",
"description": "The command to execute for this task",
"type": "string",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplecommand"
}
}
},
"args": {
"title": "Args",
"description": "The args for the executed command",
"type": "array",
"items": {
"type": "string"
},
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplecommand"
}
}
},
"script": {
"description": "If `command` is not defined, but `script` is defined, the provided script will be executed",
"$ref": "#/definitions/script",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplescript"
}
}
},
"script_runner": {
"title": "Script Runner",
"description": "The script attribute may hold non OS scripts, for example rust code to be compiled and executed. In order to use non OS script runners, you must define the special script_runner with the @ prefix.",
"type": "string",
"examples": [
"@rust",
"@duckscript",
"@shell",
"python",
"perl",
"node",
"php",
"powershell"
],
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task"
}
}
},
"script_runner_args": {
"title": "Args",
"description": "The script runner arguments before the script file path",
"type": "string",
"examples": ["-f"],
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplegeneric"
}
}
},
"script_extension": {
"title": "File Extension",
"description": "The file extension to use for the script",
"type": "string",
"examples": ["py", "pl", "js", "php", "ps1"]
},
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplegeneric"
}
},
"run_task": {
"description": "Run a task as a sub-task at the end of executing this task",
"x-taplo": {
"links": {
"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"
}
},
"oneOf": [
{
"title": "Task Name",
"description": "Name of the sub-task to execute",
"type": "string"
},
{
"type": "object",
"required": ["name"],
"additionalProperties": false,
"properties": {
"name": {
"title": "Task Name",
"description": "Name(s) of the sub-task to execute",
"oneOf": [
{
"type": "string"
},
{
"title": "List of Task Names",
"type": "array",
"items": {
"title": "Task Name",
"type": "string"
}