Skip to content

Commit cb0dac4

Browse files
committed
Remove console.log
1 parent 19d7125 commit cb0dac4

File tree

1 file changed

+0
-10
lines changed
  • libs/schematic/generators/ng-generate/components/shared

1 file changed

+0
-10
lines changed

libs/schematic/generators/ng-generate/components/shared/index.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -106,28 +106,18 @@ export function prepareOptions(schema: Schema, componentType: ComponentType): Sc
106106
...options,
107107
};
108108

109-
console.warn('===> prepareOptions');
110-
console.log(options);
111-
112109
loadAndApplyConfigFile(options.configFile, options);
113110

114111
if (options.aspectModelTFilesString) {
115112
options.aspectModelTFiles = options.aspectModelTFilesString.split(',');
116113
}
117114

118-
console.warn('===> LOADED OPTIONS');
119115
validateUrns(options);
120116

121117
if (options.jsonAccessPath.length > 0 && !options.jsonAccessPath.endsWith('.')) {
122118
options.jsonAccessPath = `${options.jsonAccessPath}.`;
123119
}
124120

125-
// FIXME assign pathToSource from answers to path or default?..
126-
options.path = options.path || 'src/app/shared/components';
127-
128-
console.log(options);
129-
// throw new Error('Stop execution to check prepared options.');
130-
131121
return options;
132122
}
133123

0 commit comments

Comments
 (0)