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 dc9dc0f commit a5afd7bCopy full SHA for a5afd7b
packages/angular_devkit/build_angular/src/browser/index.ts
@@ -118,7 +118,9 @@ function getAnalyticsConfig(
118
let category = 'build';
119
if (context.builder) {
120
// We already vetted that this is a "safe" package, otherwise the analytics would be noop.
121
- category = context.builder.builderName.split(':')[1];
+ category = context.builder.builderName.split(':')[1]
122
+ || context.builder.builderName
123
+ || 'build';
124
}
125
126
// The category is the builder name if it's an angular builder.
0 commit comments