deno_task_shell 0.30.0

Cross platform scripting for deno task
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2018-2025 the Deno authors. MIT license.

#![deny(clippy::print_stderr)]
#![deny(clippy::print_stdout)]
#![deny(clippy::unused_async)]

pub mod parser;

#[cfg(feature = "shell")]
mod shell;

#[cfg(feature = "shell")]
pub use shell::*;