nestrs-cli-rs 0.1.0

Rust port of the Nest CLI for the nestrs organization.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Upstream source: `../nest-cli/lib/compiler/helpers/get-builder.ts`.

use crate::configuration::CompilerOptions;

use super::super::{BuilderVariant, CompilerCommandOptions};

pub fn get_builder(
    options: &CompilerCommandOptions,
    compiler_options: &CompilerOptions,
) -> BuilderVariant {
    super::super::get_builder(options, compiler_options)
}