Skip to content
This repository was archived by the owner on May 1, 2020. It is now read-only.

Commit f0ea0da

Browse files
jheimbachmhartington
authored andcommitted
fix(generators): correct pipes default folder name
1 parent 1500f11 commit f0ea0da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ export function generateContext(context?: BuildContext): BuildContext {
193193
setProcessEnvVar(Constants.ENV_COMPONENTS_NG_MODULE_PATH, context.componentsNgModulePath);
194194
Logger.debug(`componentsNgModulePath set to ${context.componentsNgModulePath}`);
195195

196-
context.pipesNgModulePath = resolve(getConfigValue(context, '--pipesNgModulePath', null, Constants.ENV_PIPES_NG_MODULE_PATH, Constants.ENV_PIPES_NG_MODULE_PATH.toLowerCase(), join(context.srcDir, 'PIPES', 'pipes.module.ts')));
196+
context.pipesNgModulePath = resolve(getConfigValue(context, '--pipesNgModulePath', null, Constants.ENV_PIPES_NG_MODULE_PATH, Constants.ENV_PIPES_NG_MODULE_PATH.toLowerCase(), join(context.srcDir, 'pipes', 'pipes.module.ts')));
197197
setProcessEnvVar(Constants.ENV_PIPES_NG_MODULE_PATH, context.pipesNgModulePath);
198198
Logger.debug(`pipesNgModulePath set to ${context.pipesNgModulePath}`);
199199

0 commit comments

Comments
 (0)