Crates.io | deno_task_shell |
lib.rs | deno_task_shell |
version | 0.26.1 |
created_at | 2022-03-06 00:55:54.592196+00 |
updated_at | 2025-08-09 11:36:42.794066+00 |
description | Cross platform scripting for deno task |
homepage | https://deno.land/ |
repository | https://github.com/denoland/deno_task_shell |
max_upload_size | |
id | 544308 |
size | 285,644 |
// parse
let list = deno_task_shell::parser::parse(&text)?;
// execute
let env_vars = std::env::vars_os().collect::<HashMap<_, _>>();
let cwd = std::env::current_dir()?;
let exit_code = deno_task_shell::execute(
list,
env_vars,
cwd,
Default::default(), // custom commands
).await;