deno_task_shell 0.17.0

Cross platform scripting for deno task
Documentation
// Copyright 2018-2024 the Deno authors. MIT license.

pub use command::ResolveCommandPathError;
pub use commands::ExecutableCommand;
pub use commands::ExecuteCommandArgsContext;
pub use commands::ShellCommand;
pub use commands::ShellCommandContext;
pub use execute::execute;
pub use execute::execute_with_pipes;
pub use types::pipe;
pub use types::EnvChange;
pub use types::ExecuteResult;
pub use types::FutureExecuteResult;
pub use types::ShellPipeReader;
pub use types::ShellPipeWriter;
pub use types::ShellState;

mod command;
mod commands;
mod execute;
mod fs_util;
mod types;

#[cfg(test)]
mod test;
#[cfg(test)]
mod test_builder;