deno_task_shell

Crates.iodeno_task_shell
lib.rsdeno_task_shell
version0.26.1
created_at2022-03-06 00:55:54.592196+00
updated_at2025-08-09 11:36:42.794066+00
descriptionCross platform scripting for deno task
homepagehttps://deno.land/
repositoryhttps://github.com/denoland/deno_task_shell
max_upload_size
id544308
size285,644
Bartek IwaƄczuk (bartlomieju)

documentation

https://docs.rs/deno_task_shell

README

deno_task_shell

// 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;
Commit count: 133

cargo fmt