We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9551f9 commit d9420cbCopy full SHA for d9420cb
packages/angular_devkit/build_angular/plugins/webpack/analytics.ts
@@ -158,7 +158,7 @@ export class NgBuildAnalyticsPlugin {
158
159
// Count the number of `Component({` strings (case sensitive), which happens in __decorate().
160
// This does not include View Engine AOT compilation, we use the ngfactory for it.
161
- this._stats.numberOfComponents += countOccurrences(module._source.source(), ' Component({');
+ this._stats.numberOfComponents += countOccurrences(module._source.source(), 'Component({');
162
// For Ivy we just count ɵcmp.
163
this._stats.numberOfComponents += countOccurrences(module._source.source(), '.ɵcmp', true);
164
}
0 commit comments