Introduce new command - nu check (#5864)

* nu check command - 1

* Support stream

* Polish code and fix corner case
This commit is contained in:
Kangaxx-0
2022-06-26 04:53:06 -07:00
committed by GitHub
parent 32f0f94b46
commit dc9d939c83
5 changed files with 858 additions and 0 deletions

View File

@ -1,6 +1,7 @@
mod benchmark;
mod complete;
mod exec;
mod nu_check;
mod ps;
mod run_external;
mod sys;
@ -9,6 +10,7 @@ mod which_;
pub use benchmark::Benchmark;
pub use complete::Complete;
pub use exec::Exec;
pub use nu_check::NuCheck;
pub use ps::Ps;
pub use run_external::{External, ExternalCommand};
pub use sys::Sys;