nest-rs-cli 1.1.0

Scaffolding CLI for NestRS — new projects, feature generators, and project health checks.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod doctor;
mod generate;
mod new;
mod run;
mod toolchain;
mod update;

pub use doctor::{DoctorOptions, run as run_doctor};
pub(crate) use generate::queue_db_crates;
pub use generate::{
    AdapterOptions, AuthOptions, FeatureOptions, MigrationOptions, ResourceOptions, run_adapter,
    run_auth, run_feature, run_migration, run_resource,
};
pub use new::{NewOptions, project_dir_for_check, run as run_new, run_cargo_check};
pub use run::{RunOptions, run as run_task};
pub use update::{UpdateOptions, run as run_update};