42个版本 (16个重大更新)
0.17.0 | 2024年6月19日 |
---|---|
0.16.0 | 2024年3月27日 |
0.14.2 | 2023年11月23日 |
0.13.1 | 2023年7月26日 |
0.2.1 | 2022年3月26日 |
#181 在 HTTP服务器
每月下载量 17,485
用于 11 个crate(直接使用10个)
220KB
7.5K SLoC
deno_task_shell
// parse
let list = deno_task_shell::parser::parse(&text)?;
// execute
let env_vars = HashMap::from(&[
("SOME_VAR".to_string(), "value".to_string()),
]);
let cwd = std::env::current_dir()?;
let exit_code = deno_task_shell::execute(
list,
env_vars,
&cwd,
Default::default(), // custom commands
).await;
依赖项
~0.7–9.5MB
~83K SLoC