deno_task_shell/
lib.rs

1// Copyright 2018-2025 the Deno authors. MIT license.
2
3#![deny(clippy::print_stderr)]
4#![deny(clippy::print_stdout)]
5#![deny(clippy::unused_async)]
6
7pub mod parser;
8
9#[cfg(feature = "shell")]
10mod shell;
11
12#[cfg(feature = "shell")]
13pub use shell::*;