mirror of
https://github.com/sagiegurari/cargo-make
synced 2026-06-08 17:20:03 +00:00
19 lines
427 B
TOML
Executable File
19 lines
427 B
TOML
Executable File
|
|
extend = [
|
|
{ path = "alias.toml" },
|
|
{ path = "optional_makefile.toml", optional = true },
|
|
{ path = "cwd.toml" },
|
|
{ path = "cwd.toml", relative = "bad" },
|
|
{ path = "./examples/python.toml", relative = "crate" },
|
|
{ path = "./examples/javascript.toml", relative = "git" },
|
|
]
|
|
|
|
[config]
|
|
skip_core_tasks = true
|
|
skip_git_env_info = true
|
|
skip_rust_env_info = true
|
|
skip_crate_env_info = true
|
|
|
|
[tasks.extended]
|
|
alias = "D2"
|