We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ba2a03 commit 65424f7Copy full SHA for 65424f7
packages/angular_devkit/build_angular/src/browser/index.ts
@@ -110,7 +110,9 @@ function getAnalyticsConfig(
110
let category = 'build';
111
if (context.builder) {
112
// We already vetted that this is a "safe" package, otherwise the analytics would be noop.
113
- category = context.builder.builderName.split(':')[1];
+ category = context.builder.builderName.split(':')[1]
114
+ || context.builder.builderName
115
+ || 'build';
116
}
117
118
// The category is the builder name if it's an angular builder.
0 commit comments