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
13
14
//! Upstream source: `../nest-cli/lib/compiler/helpers/get-webpack-config-path.ts`.

use std::path::PathBuf;

use crate::configuration::CompilerOptions;

use super::super::CompilerCommandOptions;

pub fn get_webpack_config_path(
    options: &CompilerCommandOptions,
    compiler_options: &CompilerOptions,
) -> Option<PathBuf> {
    super::super::get_webpack_config_path(options, compiler_options)
}