nest-rs-cli 1.3.0

Scaffolding CLI for NestRS — new projects, feature generators, and project health checks.
1
2
3
4
5
6
7
8
9
10
11
//! `nestrs` CLI integration suite — drives the built binary against a scratch
//! workspace on disk. No live infrastructure, so it is the `integration` suite.
//!
//! The module tree mirrors `src/`: one file per command, `generate/` per
//! generator, and the shared fixtures in [`harness`].

mod cli;
mod doctor;
mod generate;
mod harness;
mod new;