We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8089a3f commit ff7b995Copy full SHA for ff7b995
packages/ngtools/webpack/src/ngcc_processor.ts
@@ -104,6 +104,7 @@ export class NgccProcessor {
104
}
105
106
class NgccLogger implements Logger {
107
+ private alreadyProcessMsg = 'The target entry-point has already been processed';
108
constructor(
109
private readonly compilationWarnings: (Error | string)[],
110
private readonly compilationErrors: (Error | string)[],
@@ -112,7 +113,12 @@ class NgccLogger implements Logger {
112
113
114
debug(..._args: string[]) { }
115
- info(..._args: string[]) { }
116
+ info(..._args: string[]) {
117
+ const msg = _args.join(' ');
118
+ if (!msg.includes(this.alreadyProcessMsg)) {
119
+ process.stderr.write(`\n${msg}\n`);
120
+ }
121
122
123
warn(...args: string[]) {
124
this.compilationWarnings.push(args.join(' '));
0 commit comments