schema
stringclasses
471 values
key
stringlengths
0
203
description
stringlengths
0
4.37k
object
stringlengths
2
322k
cargo-make.json
extend
Extends the specified task as a base task
{"type": "string", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-task-extend-attribute"}}}
cargo-make.json
workspace
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"}}}
cargo-make.json
watch
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"}, {"type": "object", "x-taplo": {"initKeys": ["watch"]}, "additionalProperties": false, "properties": {"version": {}, "postpone": {"default": true, "type": "boolean"}, "ignore_pattern": {"type": "string"}, "no_git_ignore": {"default": true, "type": "boolean"}, "watch": {"type": "array", "items": {"type": "string"}}}}]}
cargo-make.json
version
Version of cargo-watch to install if it's not already installed
{}
cargo-make.json
postpone
Postpone first run until a file changes
{"default": true, "type": "boolean"}
cargo-make.json
ignore_pattern
Ignore a glob/gitignore-style pattern while watching
{"type": "string"}
cargo-make.json
no_git_ignore
Do not use .gitignore files while watching
{"default": true, "type": "boolean"}
cargo-make.json
watch
List of files and folders to watch
{"type": "array", "items": {"type": "string"}}
cargo-make.json
items
File or folder to watch
{"type": "string"}
cargo-make.json
condition
If provided all condition values must be met in order for the task to be invoked (will not stop dependencies)
{}
cargo-make.json
condition_script
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"}}}
cargo-make.json
ignore_errors
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"}}}
cargo-make.json
force
DEPRECATED, replaced with `ignore_errors`
{"default": true, "type": "boolean", "deprecated": true, "x-taplo": {"hidden": true}}
cargo-make.json
env_files
The env files to setup before running the task commands
{}
cargo-make.json
env
The env vars to setup before running the task commands
{}
cargo-make.json
cwd
The working directory for the task to execute its command/script
{"type": "string", "default": "path/to/dir"}
cargo-make.json
alias
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"}}}
cargo-make.json
linux_alias
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"}}}
cargo-make.json
windows_alias
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"}}}
cargo-make.json
mac_alias
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"}}}
cargo-make.json
install_crate
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": [{"default": false, "type": "boolean"}, {"type": "string"}, {"type": "object", "required": ["crate_name", "binary", "test_arg"], "additionalProperties": false, "properties": {"crate_name": {"type": "string"}, "rustup_component_name": {"type": "string"}, "binary": {"type": "string"}, "test_arg": {"oneOf": [{"type": "string"}, {"type": "array", "items": {"type": "string"}}]}, "min_version": {}, "version": {}, "install_command": {"type": "string"}}}, {"type": "object", "required": ["rustup_component_name"], "additionalProperties": false, "properties": {"rustup_component_name": {"type": "string"}, "binary": {"type": "string"}, "test_arg": {"oneOf": [{"type": "string"}, {"type": "array", "items": {"type": "string"}}]}}}, {"type": "object", "required": ["crate_name", "min_version"], "additionalProperties": false, "properties": {"crate_name": {"type": "string"}, "min_version": {}}}]}
cargo-make.json
install_crate
If set to false, will disable crate installation from the base task
{"default": false, "type": "boolean"}
cargo-make.json
install_crate
Name of the crate to install
{"type": "string"}
cargo-make.json
install_crate
Instructions on how to install a crate
{"type": "object", "required": ["crate_name", "binary", "test_arg"], "additionalProperties": false, "properties": {"crate_name": {"type": "string"}, "rustup_component_name": {"type": "string"}, "binary": {"type": "string"}, "test_arg": {"oneOf": [{"type": "string"}, {"type": "array", "items": {"type": "string"}}]}, "min_version": {}, "version": {}, "install_command": {"type": "string"}}}
cargo-make.json
crate_name
Name of the crate to install
{"type": "string"}
cargo-make.json
rustup_component_name
The component to install via rustup
{"type": "string"}
cargo-make.json
binary
The binary file name to be used to test if the crate is already installed
{"type": "string"}
cargo-make.json
test_arg
Arguments used to check whether a crate or rustup component is installed.
{"oneOf": [{"type": "string"}, {"type": "array", "items": {"type": "string"}}]}
cargo-make.json
min_version
Minimum version of installed crate before it needs to be reinstalled
{}
cargo-make.json
version
Exact version of installed crate
{}
cargo-make.json
install_command
The alternative cargo install command to install the crate
{"type": "string"}
cargo-make.json
install_crate
Instructions on how to install a rustup component
{"type": "object", "required": ["rustup_component_name"], "additionalProperties": false, "properties": {"rustup_component_name": {"type": "string"}, "binary": {"type": "string"}, "test_arg": {"oneOf": [{"type": "string"}, {"type": "array", "items": {"type": "string"}}]}}}
cargo-make.json
rustup_component_name
The component to install via rustup
{"type": "string"}
cargo-make.json
binary
The binary file name to be used to test if the crate is already installed
{"type": "string"}
cargo-make.json
test_arg
Arguments used to check whether a crate or rustup component is installed.
{"oneOf": [{"type": "string"}, {"type": "array", "items": {"type": "string"}}]}
cargo-make.json
install_crate
Instructions on how to install a cargo plugin
{"type": "object", "required": ["crate_name", "min_version"], "additionalProperties": false, "properties": {"crate_name": {"type": "string"}, "min_version": {}}}
cargo-make.json
crate_name
Name of the crate to install
{"type": "string"}
cargo-make.json
min_version
Minimum version of installed crate before it needs to be reinstalled
{}
cargo-make.json
install_crate_args
Additional cargo install args
{"type": "array", "items": {"type": "string"}}
cargo-make.json
install_script
Provided script will be executed before running the task
{}
cargo-make.json
command
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"}}}
cargo-make.json
args
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"}}}
cargo-make.json
script
If `command` is not defined, but `script` is defined, the provided script will be executed
{"x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplescript"}}}
cargo-make.json
script_runner
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"}}}
cargo-make.json
script_runner_args
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"}}}
cargo-make.json
script_extension
The file extension to use for the script
{"type": "string", "examples": ["py", "pl", "js", "php", "ps1"]}
cargo-make.json
run_task
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": [{"type": "string"}, {"type": "object", "required": ["name"], "additionalProperties": false, "properties": {"name": {"oneOf": [{"type": "string"}, {"type": "array", "items": {"type": "string"}}]}, "fork": {"default": true, "type": "boolean", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"}}}, "parallel": {"default": true, "type": "boolean", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"}}}, "cleanup_task": {"type": "string", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"}}}}}, {"type": "array", "items": {"type": "object", "required": ["name"], "additionalProperties": false, "properties": {"name": {"oneOf": [{"type": "string"}, {"type": "array", "items": {"type": "string"}}]}, "fork": {"default": true, "type": "boolean", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"}}}, "parallel": {"default": true, "type": "boolean", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"}}}, "cleanup_task": {"type": "string", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"}}}, "condition": {}, "condition_script": {"type": "array", "items": {"type": "string"}}}}}]}
cargo-make.json
run_task
Name of the sub-task to execute
{"type": "string"}
cargo-make.json
name
Name(s) of the sub-task to execute
{"oneOf": [{"type": "string"}, {"type": "array", "items": {"type": "string"}}]}
cargo-make.json
fork
Fork the sub-task into a a new subprocess
{"default": true, "type": "boolean", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"}}}
cargo-make.json
parallel
Run tasks in parallel
{"default": true, "type": "boolean", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"}}}
cargo-make.json
cleanup_task
A task to run after all specified sub-tasks have completed
{"type": "string", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"}}}
cargo-make.json
run_task
Conditional sub-task selector
{"type": "array", "items": {"type": "object", "required": ["name"], "additionalProperties": false, "properties": {"name": {"oneOf": [{"type": "string"}, {"type": "array", "items": {"type": "string"}}]}, "fork": {"default": true, "type": "boolean", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"}}}, "parallel": {"default": true, "type": "boolean", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"}}}, "cleanup_task": {"type": "string", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"}}}, "condition": {}, "condition_script": {"type": "array", "items": {"type": "string"}}}}}
cargo-make.json
items
Sub-task routing information
{"type": "object", "required": ["name"], "additionalProperties": false, "properties": {"name": {"oneOf": [{"type": "string"}, {"type": "array", "items": {"type": "string"}}]}, "fork": {"default": true, "type": "boolean", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"}}}, "parallel": {"default": true, "type": "boolean", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"}}}, "cleanup_task": {"type": "string", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"}}}, "condition": {}, "condition_script": {"type": "array", "items": {"type": "string"}}}}
cargo-make.json
name
Name(s) of the sub-task to execute
{"oneOf": [{"type": "string"}, {"type": "array", "items": {"type": "string"}}]}
cargo-make.json
fork
Fork the sub-task into a a new subprocess
{"default": true, "type": "boolean", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"}}}
cargo-make.json
parallel
Run tasks in parallel
{"default": true, "type": "boolean", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"}}}
cargo-make.json
cleanup_task
A task to run after all specified sub-tasks have completed
{"type": "string", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-task-command-script-task-examplesubtask"}}}
cargo-make.json
condition
If provided all condition values must be met in order for the task to be invoked
{}
cargo-make.json
condition_script
If script exit code is not 0, the sub tasks will not be invoked
{"type": "array", "items": {"type": "string"}}
cargo-make.json
dependencies
A list of tasks to execute before this task
{"type": "array", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-task-dependencies-alias"}}, "items": {"oneOf": [{"type": "string"}, {"type": "object", "x-taplo": {"initKeys": ["path"]}, "required": ["name"], "additionalProperties": false, "properties": {"name": {"type": "string"}, "path": {"type": "string", "default": "path/to/makefile"}}}]}}
cargo-make.json
items
The name of a task in this file
{"type": "string"}
cargo-make.json
items
A task dependency potentially in another file
{"type": "object", "x-taplo": {"initKeys": ["path"]}, "required": ["name"], "additionalProperties": false, "properties": {"name": {"type": "string"}, "path": {"type": "string", "default": "path/to/makefile"}}}
cargo-make.json
name
The task name to execute
{"type": "string"}
cargo-make.json
path
The path to the makefile the task resides in
{"type": "string", "default": "path/to/makefile"}
cargo-make.json
toolchain
The rust toolchain used to invoke the command or install the needed crates/components
{"type": "string", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-toolchain"}}}
cargo-make.json
linux
Override task if runtime OS is Linux (takes precedence over alias)
{}
cargo-make.json
windows
Override task if runtime OS is Windows (takes precedence over alias)
{}
cargo-make.json
mac
Override task if runtime OS is Mac (takes precedence over alias)
{}
cargo-make.json
extend
Extend an external makefile by importing its tasks and properties to this file. Paths are relative to this makefile
{"x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-workspace-extending-external-makefile"}}, "default": "path/to/Makefile.toml", "examples": ["path/to/Makefile.toml", {"path": "path/to/Makefile.toml", "optional": true}, [{"path": "path/to/Makefile.toml", "optional": true}]], "oneOf": [{"type": "string", "examples": ["path/to/Makefile.toml"]}, {}, {"type": "array", "items": {}, "uniqueItems": true}]}
cargo-make.json
extend
File path to external makefile relative to this file
{"type": "string", "examples": ["path/to/Makefile.toml"]}
cargo-make.json
extend
List of external makefiles to extend
{"type": "array", "items": {}, "uniqueItems": true}
cargo-make.json
config
Configuration options for this makefile
{"type": "object", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/api/cli/types/struct.ConfigSection.html"}, "initKeys": ["min_version"]}, "additionalProperties": false, "properties": {"skip_core_tasks": {"default": false, "type": "boolean", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-predefined-flows-disable"}}}, "skip_git_env_info": {"default": false, "type": "boolean", "x-taplo": {"links": {"key": "https://github.com/sagiegurari/cargo-make#performance-tuning"}}}, "skip_rust_env_info": {"default": false, "type": "boolean", "x-taplo": {"links": {"key": "https://github.com/sagiegurari/cargo-make#performance-tuning"}}}, "skip_crate_env_info": {"default": false, "type": "boolean", "x-taplo": {"links": {"key": "https://github.com/sagiegurari/cargo-make#performance-tuning"}}}, "modify_core_tasks": {"type": "object", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-predefined-flows-modify"}}, "examples": [{"private": true}, {"namespace": "default"}, {"private": true, "namespace": "default"}], "additionalProperties": false, "properties": {"private": {"default": true, "type": "boolean"}, "namespace": {"type": "string", "default": "default"}}}, "init_task": {"type": "string", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-init-end-tasks"}}, "default": "init"}, "end_task": {"default": "end", "type": "string", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-init-end-tasks"}}}, "on_error_task": {"type": "string", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-catching-errors"}}, "default": "catch"}, "legacy_migration_task": {"default": "legacy-migration", "type": "string", "x-taplo": {"hidden": true}}, "additional_profiles": {"default": [], "type": "array", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-profiles"}}, "examples": [["additional_profile"]], "items": {"type": "string", "default": "additional_profile"}, "uniqueItems": true}, "min_version": {"default": "0.35.0", "examples": ["0.35.0", "0.34.0", "0.33.0"], "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-min-version"}}}, "default_to_workspace": {"default": true, "type": "boolean", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-workspace-disabling-workspace-support"}}}, "reduce_output": {"default": true, "type": "boolean"}, "time_summary": {"default": true, "type": "boolean"}, "load_cargo_aliases": {"default": true, "type": "boolean", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-cargo-alias-tasks"}}}, "main_project_member": {"type": "string", "default": "main-crate"}, "load_script": {"x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-load-scripts"}}}, "linux_load_script": {"x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-load-scripts"}}}, "windows_load_script": {"x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-load-scripts"}}}, "mac_load_script": {"x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-load-scripts"}}}}}
cargo-make.json
skip_core_tasks
If true, the default core tasks will not be loaded
{"default": false, "type": "boolean", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-predefined-flows-disable"}}}
cargo-make.json
skip_git_env_info
If true, the Git related environment variables will not be loaded
{"default": false, "type": "boolean", "x-taplo": {"links": {"key": "https://github.com/sagiegurari/cargo-make#performance-tuning"}}}
cargo-make.json
skip_rust_env_info
If true, the rust related environment variables will not be loaded
{"default": false, "type": "boolean", "x-taplo": {"links": {"key": "https://github.com/sagiegurari/cargo-make#performance-tuning"}}}
cargo-make.json
skip_crate_env_info
If true, the current crate related environment variables will not be loaded
{"default": false, "type": "boolean", "x-taplo": {"links": {"key": "https://github.com/sagiegurari/cargo-make#performance-tuning"}}}
cargo-make.json
modify_core_tasks
Options to modify all the core tasks
{"type": "object", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-predefined-flows-modify"}}, "examples": [{"private": true}, {"namespace": "default"}, {"private": true, "namespace": "default"}], "additionalProperties": false, "properties": {"private": {"default": true, "type": "boolean"}, "namespace": {"type": "string", "default": "default"}}}
cargo-make.json
private
If true, all core tasks will be set to private (default false)
{"default": true, "type": "boolean"}
cargo-make.json
namespace
If set to some value, all core tasks are modified to: `namespace::name`
{"type": "string", "default": "default"}
cargo-make.json
init_task
Init task name which will be invoked at the start of every run
{"type": "string", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-init-end-tasks"}}, "default": "init"}
cargo-make.json
end_task
End task name which will be invoked at the end of every run
{"default": "end", "type": "string", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-init-end-tasks"}}}
cargo-make.json
on_error_task
The name of the task to run in case of any error during the invocation of the flow
{"type": "string", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-catching-errors"}}, "default": "catch"}
cargo-make.json
legacy_migration_task
The name of the task which runs legacy migration flows
{"default": "legacy-migration", "type": "string", "x-taplo": {"hidden": true}}
cargo-make.json
additional_profiles
Additional profile names to load
{"default": [], "type": "array", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-profiles"}}, "examples": [["additional_profile"]], "items": {"type": "string", "default": "additional_profile"}, "uniqueItems": true}
cargo-make.json
items
Additional profile name to load
{"type": "string", "default": "additional_profile"}
cargo-make.json
min_version
Minimum cargo-make/makers version
{"default": "0.35.0", "examples": ["0.35.0", "0.34.0", "0.33.0"], "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-min-version"}}}
cargo-make.json
default_to_workspace
The default value for the `workspace` value of tasks in this makefile
{"default": true, "type": "boolean", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-workspace-disabling-workspace-support"}}}
cargo-make.json
reduce_output
Set to true to reduce console output for non CI execution
{"default": true, "type": "boolean"}
cargo-make.json
time_summary
Set to true to print time summary at the end of the flow
{"default": true, "type": "boolean"}
cargo-make.json
load_cargo_aliases
Automatically load cargo aliases as cargo-make tasks
{"default": true, "type": "boolean", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-cargo-alias-tasks"}}}
cargo-make.json
main_project_member
The project information member (used by workspaces)
{"type": "string", "default": "main-crate"}
cargo-make.json
load_script
Invoked while loading the descriptor file but before loading any extended descriptor
{"x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-load-scripts"}}}
cargo-make.json
linux_load_script
Invoked while loading the descriptor file but before loading any extended descriptor. Takes precedence over `load_script` if runtime OS is Linux.
{"x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-load-scripts"}}}
cargo-make.json
windows_load_script
Invoked while loading the descriptor file but before loading any extended descriptor. Takes precedence over `load_script` if runtime OS is Windows.
{"x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-load-scripts"}}}
cargo-make.json
mac_load_script
Invoked while loading the descriptor file but before loading any extended descriptor. Takes precedence over `load_script` if runtime OS is Mac.
{"x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-load-scripts"}}}
cargo-make.json
env_files
The environment files to setup before running any tasks
{}
cargo-make.json
env_scripts
The environment scripts to execute after environment files and the env block. These scripts can be used to run anything needed before starting up the flow.
{"type": "array", "x-taplo": {"links": {"key": "https://sagiegurari.github.io/cargo-make/#usage-env-file"}}, "default": [], "items": {"type": "string"}}
cargo-make.json
items
Env script
{"type": "string"}
cargo-make.json
env
The environment variables to setup before running any tasks
{}