nest-rs-cli 0.5.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
mod doctor;
mod generate;
mod new;
mod run;
mod toolchain;
mod update;

pub use doctor::{DoctorOptions, run as run_doctor};
pub use generate::{
    AdapterOptions, FeatureOptions, MigrationOptions, ResourceOptions, run_adapter, run_feature,
    run_migration, run_resource,
};
pub use new::{NewOptions, NewTemplate, 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};