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

Commit e2aed27

Browse files
committed
style(): remove console logs
1 parent c6cf9cd commit e2aed27

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/generators.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,9 @@ export function processPageRequest(context: BuildContext, name: string) {
2020

2121
export function processPipeRequest(context: BuildContext, name: string, ngModulePath: string) {
2222
const hydratedRequest = hydrateRequest(context, { type: 'pipe', name });
23-
console.log(hydratedRequest);
24-
console.log(ngModulePath);
2523
return readFileAsync(ngModulePath).then((fileContent: string) => {
2624
fileContent = insertNamedImportIfNeeded(ngModulePath, fileContent, hydratedRequest.className, path.relative(path.dirname(ngModulePath), hydratedRequest.dirToWrite));
2725
fileContent = appendNgModuleDeclaration(ngModulePath, fileContent, hydratedRequest.className);
28-
console.log(fileContent);
2926
return writeFileAsync(ngModulePath, fileContent);
3027
}).then(() => {
3128
return processNonTabRequest(context, hydratedRequest);

0 commit comments

Comments
 (0)