refactor(@angular-devkit/build-angular): replace Ivy Enabled analytics dimension with AOT Enabled

The motivation behind this change is that since version 12, application are always built using Ivy, in addition to this, adding AOT as dimension might be  helpful in our decision process if we want to remove JIT.
This commit is contained in:
Alan Agius 2021-10-12 11:39:13 +02:00
parent 08687d1475
commit 079ef070c9
5 changed files with 15 additions and 8 deletions

View File

@ -51,7 +51,7 @@ Note: There's a limit of 20 custom dimensions.
| 5 | `Flag: --style` | `string` |
| 6 | `--collection` | `string` |
| 7 | `Flag: --strict` | `boolean` |
| 8 | `Ivy Enabled` | `boolean` |
| 8 | `AOT Enabled` | `boolean` |
| 9 | `Flag: --inline-style` | `boolean` |
| 10 | `Flag: --inline-template` | `boolean` |
| 11 | `Flag: --view-encapsulation` | `string` |

View File

@ -1073,6 +1073,8 @@ class MultiAnalytics implements Analytics {
// @public
enum NgCliAnalyticsDimensions {
// (undocumented)
AotEnabled = 8,
// (undocumented)
BuildErrors = 20,
// (undocumented)
@ -1082,8 +1084,6 @@ enum NgCliAnalyticsDimensions {
// (undocumented)
NgAddCollection = 6,
// (undocumented)
NgIvyEnabled = 8,
// (undocumented)
NodeVersion = 4,
// (undocumented)
RamInGigabytes = 3

View File

@ -28,6 +28,13 @@ export function getAnalyticsConfig(
// The category is the builder name if it's an angular builder.
return {
plugins: [new NgBuildAnalyticsPlugin(wco.projectRoot, context.analytics, category, true)],
plugins: [
new NgBuildAnalyticsPlugin(
wco.projectRoot,
context.analytics,
category,
wco.buildOptions.aot ?? false,
),
],
};
}

View File

@ -81,7 +81,7 @@ export class NgBuildAnalyticsPlugin {
protected _projectRoot: string,
protected _analytics: analytics.Analytics,
protected _category: string,
private _isIvy: boolean,
private aotEnabled: boolean,
) {}
protected _reset() {
@ -115,7 +115,7 @@ export class NgBuildAnalyticsPlugin {
dimensions[analytics.NgCliAnalyticsDimensions.BuildErrors] = `,${this._stats.errors.join()},`;
}
dimensions[analytics.NgCliAnalyticsDimensions.NgIvyEnabled] = this._isIvy;
dimensions[analytics.NgCliAnalyticsDimensions.AotEnabled] = this.aotEnabled;
return dimensions;
}

View File

@ -27,7 +27,7 @@ export enum NgCliAnalyticsDimensions {
RamInGigabytes = 3,
NodeVersion = 4,
NgAddCollection = 6,
NgIvyEnabled = 8,
AotEnabled = 8,
BuildErrors = 20,
}
@ -57,7 +57,7 @@ export const NgCliAnalyticsDimensionsFlagInfo: { [name: string]: [string, string
RamInGigabytes: ['RAM (In GB)', 'number'],
NodeVersion: ['Node Version', 'number'],
NgAddCollection: ['--collection', 'string'],
NgIvyEnabled: ['Ivy Enabled', 'boolean'],
AotEnabled: ['AOT Enabled', 'boolean'],
BuildErrors: ['Build Errors (comma separated)', 'string'],
};