@nx/angular 21.5.0-beta.1 → 21.5.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/migrations.json +169 -0
  2. package/package.json +9 -9
  3. package/spec/src/migrations/update-21-5-0/remove-default-karma-configuration-files.spec.d.ts +2 -0
  4. package/spec/src/migrations/update-21-5-0/remove-default-karma-configuration-files.spec.d.ts.map +1 -0
  5. package/spec/src/migrations/update-21-5-0/update-angular-cli.spec.d.ts +2 -0
  6. package/spec/src/migrations/update-21-5-0/update-angular-cli.spec.d.ts.map +1 -0
  7. package/src/generators/convert-to-rspack/convert-to-rspack.d.ts.map +1 -1
  8. package/src/generators/convert-to-rspack/convert-to-rspack.js +9 -3
  9. package/src/generators/setup-mf/lib/fix-bootstrap.js +2 -2
  10. package/src/generators/utils/version-utils.d.ts +5 -0
  11. package/src/generators/utils/version-utils.d.ts.map +1 -1
  12. package/src/generators/utils/version-utils.js +18 -0
  13. package/src/migrations/update-21-5-0/remove-default-karma-configuration-files.d.ts +3 -0
  14. package/src/migrations/update-21-5-0/remove-default-karma-configuration-files.d.ts.map +1 -0
  15. package/src/migrations/update-21-5-0/remove-default-karma-configuration-files.js +53 -0
  16. package/src/migrations/update-21-5-0/update-angular-cli.d.ts +4 -0
  17. package/src/migrations/update-21-5-0/update-angular-cli.d.ts.map +1 -0
  18. package/src/migrations/update-21-5-0/update-angular-cli.js +23 -0
  19. package/src/migrations/update-21-5-0/utils/karma-config-analyzer.d.ts +28 -0
  20. package/src/migrations/update-21-5-0/utils/karma-config-analyzer.d.ts.map +1 -0
  21. package/src/migrations/update-21-5-0/utils/karma-config-analyzer.js +139 -0
  22. package/src/migrations/update-21-5-0/utils/karma-config-comparer.d.ts +64 -0
  23. package/src/migrations/update-21-5-0/utils/karma-config-comparer.d.ts.map +1 -0
  24. package/src/migrations/update-21-5-0/utils/karma-config-comparer.js +145 -0
  25. package/src/utils/backward-compatible-versions.d.ts +1 -1
  26. package/src/utils/backward-compatible-versions.d.ts.map +1 -1
  27. package/src/utils/backward-compatible-versions.js +0 -1
  28. package/src/utils/versions.d.ts +4 -5
  29. package/src/utils/versions.d.ts.map +1 -1
  30. package/src/utils/versions.js +5 -6
  31. package/spec/tsconfig.spec.tsbuildinfo +0 -1
@@ -0,0 +1,64 @@
1
+ /**
2
+ * @license
3
+ * Copyright Google LLC All Rights Reserved.
4
+ *
5
+ * Use of this source code is governed by an MIT-style license that can be
6
+ * found in the LICENSE file at https://angular.dev/license
7
+ */
8
+ import { type KarmaConfigAnalysis, type KarmaConfigValue } from './karma-config-analyzer';
9
+ /**
10
+ * Represents the difference between two Karma configurations.
11
+ */
12
+ export interface KarmaConfigDiff {
13
+ /** A map of settings that were added in the project's configuration. */
14
+ added: Map<string, KarmaConfigValue>;
15
+ /** A map of settings that were removed from the project's configuration. */
16
+ removed: Map<string, KarmaConfigValue>;
17
+ /** A map of settings that were modified between the two configurations. */
18
+ modified: Map<string, {
19
+ projectValue: KarmaConfigValue;
20
+ defaultValue: KarmaConfigValue;
21
+ }>;
22
+ /** A boolean indicating if the comparison is reliable (i.e., no unsupported values were found). */
23
+ isReliable: boolean;
24
+ }
25
+ /**
26
+ * Generates the default Karma configuration file content as a string.
27
+ * @param relativePathToWorkspaceRoot The relative path from the Karma config file to the workspace root.
28
+ * @param projectName The name of the project.
29
+ * @param needDevkitPlugin A boolean indicating if the devkit plugin is needed.
30
+ * @returns The content of the default `karma.conf.js` file.
31
+ */
32
+ export declare function generateDefaultKarmaConfig(relativePathToWorkspaceRoot: string, projectName: string, needDevkitPlugin: boolean): Promise<string>;
33
+ /**
34
+ * Compares two Karma configuration analyses and returns the difference.
35
+ * @param projectAnalysis The analysis of the project's configuration.
36
+ * @param defaultAnalysis The analysis of the default configuration to compare against.
37
+ * @returns A diff object representing the changes between the two configurations.
38
+ */
39
+ export declare function compareKarmaConfigs(projectAnalysis: KarmaConfigAnalysis, defaultAnalysis: KarmaConfigAnalysis): KarmaConfigDiff;
40
+ /**
41
+ * Checks if there are any differences in the provided Karma configuration diff.
42
+ * @param diff The Karma configuration diff object to check.
43
+ * @returns True if there are any differences; false otherwise.
44
+ */
45
+ export declare function hasDifferences(diff: KarmaConfigDiff): boolean;
46
+ /**
47
+ * Compares a project's Karma configuration with the default configuration.
48
+ * @param projectConfigContent The content of the project's `karma.conf.js` file.
49
+ * @param projectRoot The root directory of the project.
50
+ * @param needDevkitPlugin A boolean indicating if the devkit plugin is needed for the default config.
51
+ * @param karmaConfigPath The path to the Karma configuration file, used to resolve relative paths.
52
+ * @returns A diff object representing the changes.
53
+ */
54
+ export declare function compareKarmaConfigToDefault(projectConfigContent: string, projectName: string, karmaConfigPath: string, needDevkitPlugin: boolean): Promise<KarmaConfigDiff>;
55
+ /**
56
+ * Compares a project's Karma configuration with the default configuration.
57
+ * @param projectAnalysis The analysis of the project's configuration.
58
+ * @param projectRoot The root directory of the project.
59
+ * @param needDevkitPlugin A boolean indicating if the devkit plugin is needed for the default config.
60
+ * @param karmaConfigPath The path to the Karma configuration file, used to resolve relative paths.
61
+ * @returns A diff object representing the changes.
62
+ */
63
+ export declare function compareKarmaConfigToDefault(projectAnalysis: KarmaConfigAnalysis, projectName: string, karmaConfigPath: string, needDevkitPlugin: boolean): Promise<KarmaConfigDiff>;
64
+ //# sourceMappingURL=karma-config-comparer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"karma-config-comparer.d.ts","sourceRoot":"","sources":["../../../../../../../packages/angular/src/migrations/update-21-5-0/utils/karma-config-comparer.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AASH,OAAO,EAEL,KAAK,mBAAmB,EACxB,KAAK,gBAAgB,EACtB,MAAM,yBAAyB,CAAC;AAEjC;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,wEAAwE;IACxE,KAAK,EAAE,GAAG,CAAC,MAAM,EAAE,gBAAgB,CAAC,CAAC;IAErC,4EAA4E;IAC5E,OAAO,EAAE,GAAG,CAAC,MAAM,EAAE,gBAAgB,CAAC,CAAC;IAEvC,2EAA2E;IAC3E,QAAQ,EAAE,GAAG,CACX,MAAM,EACN;QAAE,YAAY,EAAE,gBAAgB,CAAC;QAAC,YAAY,EAAE,gBAAgB,CAAA;KAAE,CACnE,CAAC;IAEF,mGAAmG;IACnG,UAAU,EAAE,OAAO,CAAC;CACrB;AAED;;;;;;GAMG;AACH,wBAAsB,0BAA0B,CAC9C,2BAA2B,EAAE,MAAM,EACnC,WAAW,EAAE,MAAM,EACnB,gBAAgB,EAAE,OAAO,GACxB,OAAO,CAAC,MAAM,CAAC,CAgBjB;AAED;;;;;GAKG;AACH,wBAAgB,mBAAmB,CACjC,eAAe,EAAE,mBAAmB,EACpC,eAAe,EAAE,mBAAmB,GACnC,eAAe,CAoCjB;AAED;;;;GAIG;AACH,wBAAgB,cAAc,CAAC,IAAI,EAAE,eAAe,GAAG,OAAO,CAE7D;AAED;;;;;;;GAOG;AACH,wBAAsB,2BAA2B,CAC/C,oBAAoB,EAAE,MAAM,EAC5B,WAAW,EAAE,MAAM,EACnB,eAAe,EAAE,MAAM,EACvB,gBAAgB,EAAE,OAAO,GACxB,OAAO,CAAC,eAAe,CAAC,CAAC;AAE5B;;;;;;;GAOG;AACH,wBAAsB,2BAA2B,CAC/C,eAAe,EAAE,mBAAmB,EACpC,WAAW,EAAE,MAAM,EACnB,eAAe,EAAE,MAAM,EACvB,gBAAgB,EAAE,OAAO,GACxB,OAAO,CAAC,eAAe,CAAC,CAAC"}
@@ -0,0 +1,145 @@
1
+ "use strict";
2
+ /**
3
+ * @license
4
+ * Copyright Google LLC All Rights Reserved.
5
+ *
6
+ * Use of this source code is governed by an MIT-style license that can be
7
+ * found in the LICENSE file at https://angular.dev/license
8
+ */
9
+ Object.defineProperty(exports, "__esModule", { value: true });
10
+ exports.generateDefaultKarmaConfig = generateDefaultKarmaConfig;
11
+ exports.compareKarmaConfigs = compareKarmaConfigs;
12
+ exports.hasDifferences = hasDifferences;
13
+ exports.compareKarmaConfigToDefault = compareKarmaConfigToDefault;
14
+ /**
15
+ * Adapts the private utility from Angular CLI to be used in the migration.
16
+ */
17
+ const promises_1 = require("node:fs/promises");
18
+ const node_path_1 = require("node:path");
19
+ const node_util_1 = require("node:util");
20
+ const karma_config_analyzer_1 = require("./karma-config-analyzer");
21
+ /**
22
+ * Generates the default Karma configuration file content as a string.
23
+ * @param relativePathToWorkspaceRoot The relative path from the Karma config file to the workspace root.
24
+ * @param projectName The name of the project.
25
+ * @param needDevkitPlugin A boolean indicating if the devkit plugin is needed.
26
+ * @returns The content of the default `karma.conf.js` file.
27
+ */
28
+ async function generateDefaultKarmaConfig(relativePathToWorkspaceRoot, projectName, needDevkitPlugin) {
29
+ let template = await getKarmaConfigTemplate();
30
+ // TODO: Replace this with the actual schematic templating logic.
31
+ template = template
32
+ .replace(/<%= relativePathToWorkspaceRoot %>/g, (0, node_path_1.normalize)(relativePathToWorkspaceRoot).replace(/\\/g, '/'))
33
+ .replace(/<%= folderName %>/g, projectName);
34
+ const devkitPluginRegex = /<% if \(needDevkitPlugin\) { %>(.*?)<% } %>/gs;
35
+ const replacement = needDevkitPlugin ? '$1' : '';
36
+ template = template.replace(devkitPluginRegex, replacement);
37
+ return template;
38
+ }
39
+ /**
40
+ * Compares two Karma configuration analyses and returns the difference.
41
+ * @param projectAnalysis The analysis of the project's configuration.
42
+ * @param defaultAnalysis The analysis of the default configuration to compare against.
43
+ * @returns A diff object representing the changes between the two configurations.
44
+ */
45
+ function compareKarmaConfigs(projectAnalysis, defaultAnalysis) {
46
+ const added = new Map();
47
+ const removed = new Map();
48
+ const modified = new Map();
49
+ const allKeys = new Set([
50
+ ...projectAnalysis.settings.keys(),
51
+ ...defaultAnalysis.settings.keys(),
52
+ ]);
53
+ for (const key of allKeys) {
54
+ const projectValue = projectAnalysis.settings.get(key);
55
+ const defaultValue = defaultAnalysis.settings.get(key);
56
+ if (projectValue !== undefined && defaultValue === undefined) {
57
+ added.set(key, projectValue);
58
+ }
59
+ else if (projectValue === undefined && defaultValue !== undefined) {
60
+ removed.set(key, defaultValue);
61
+ }
62
+ else if (projectValue !== undefined && defaultValue !== undefined) {
63
+ if (!(0, node_util_1.isDeepStrictEqual)(projectValue, defaultValue)) {
64
+ modified.set(key, { projectValue, defaultValue });
65
+ }
66
+ }
67
+ }
68
+ return {
69
+ added,
70
+ removed,
71
+ modified,
72
+ isReliable: !projectAnalysis.hasUnsupportedValues &&
73
+ !defaultAnalysis.hasUnsupportedValues,
74
+ };
75
+ }
76
+ /**
77
+ * Checks if there are any differences in the provided Karma configuration diff.
78
+ * @param diff The Karma configuration diff object to check.
79
+ * @returns True if there are any differences; false otherwise.
80
+ */
81
+ function hasDifferences(diff) {
82
+ return diff.added.size > 0 || diff.removed.size > 0 || diff.modified.size > 0;
83
+ }
84
+ async function compareKarmaConfigToDefault(projectConfigOrAnalysis, projectName, karmaConfigPath, needDevkitPlugin) {
85
+ const projectAnalysis = typeof projectConfigOrAnalysis === 'string'
86
+ ? (0, karma_config_analyzer_1.analyzeKarmaConfig)(projectConfigOrAnalysis)
87
+ : projectConfigOrAnalysis;
88
+ const defaultContent = await generateDefaultKarmaConfig(relativePathToWorkspaceRoot((0, node_path_1.dirname)(karmaConfigPath)), projectName, needDevkitPlugin);
89
+ const defaultAnalysis = (0, karma_config_analyzer_1.analyzeKarmaConfig)(defaultContent);
90
+ return compareKarmaConfigs(projectAnalysis, defaultAnalysis);
91
+ }
92
+ function relativePathToWorkspaceRoot(projectRoot) {
93
+ if (!projectRoot) {
94
+ return '.';
95
+ }
96
+ return (0, node_path_1.relative)((0, node_path_1.join)('/', projectRoot), '/') || '.';
97
+ }
98
+ const karmaConfigTemplateFallback = `// Karma configuration file, see link for more information
99
+ // https://karma-runner.github.io/1.0/config/configuration-file.html
100
+
101
+ module.exports = function (config) {
102
+ config.set({
103
+ basePath: '',
104
+ frameworks: ['jasmine'<% if (needDevkitPlugin) { %>, '@angular-devkit/build-angular'<% } %>],
105
+ plugins: [
106
+ require('karma-jasmine'),
107
+ require('karma-chrome-launcher'),
108
+ require('karma-jasmine-html-reporter'),
109
+ require('karma-coverage'),<% if (needDevkitPlugin) { %>
110
+ require('@angular-devkit/build-angular/plugins/karma')<% } %>
111
+ ],
112
+ client: {
113
+ jasmine: {
114
+ // you can add configuration options for Jasmine here
115
+ // the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html
116
+ // for example, you can disable the random execution with \`random: false\`
117
+ // or set a specific seed with \`seed: 4321\`
118
+ },
119
+ },
120
+ jasmineHtmlReporter: {
121
+ suppressAll: true // removes the duplicated traces
122
+ },
123
+ coverageReporter: {
124
+ dir: require('path').join(__dirname, '<%= relativePathToWorkspaceRoot %>/coverage/<%= folderName %>'),
125
+ subdir: '.',
126
+ reporters: [
127
+ { type: 'html' },
128
+ { type: 'text-summary' }
129
+ ]
130
+ },
131
+ reporters: ['progress', 'kjhtml'],
132
+ browsers: ['Chrome'],
133
+ restartOnFileChange: true
134
+ });
135
+ };
136
+ `;
137
+ async function getKarmaConfigTemplate() {
138
+ try {
139
+ const templatePath = require.resolve('@schematics/angular/config/files/karma.conf.js.template');
140
+ return await (0, promises_1.readFile)(templatePath, 'utf-8');
141
+ }
142
+ catch (e) {
143
+ return karmaConfigTemplateFallback;
144
+ }
145
+ }
@@ -5,7 +5,7 @@ type CompatPackageVersionNames = LatestPackageVersionNames;
5
5
  export type PackageVersionNames = LatestPackageVersionNames | CompatPackageVersionNames;
6
6
  export type VersionMap = {
7
7
  angularV18: Record<CompatPackageVersionNames, string>;
8
- angularV19: Record<CompatPackageVersionNames, string>;
8
+ angularV19: Record<CompatPackageVersionNames | 'angularRspackVersion', string>;
9
9
  };
10
10
  export type PackageLatestVersions = Record<LatestPackageVersionNames, string>;
11
11
  export type PackageCompatVersions = VersionMap[SupportedVersions];
@@ -1 +1 @@
1
- {"version":3,"file":"backward-compatible-versions.d.ts","sourceRoot":"","sources":["../../../../../packages/angular/src/utils/backward-compatible-versions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,cAAc,MAAM,YAAY,CAAC;AAE7C,KAAK,iBAAiB,GAAG,YAAY,GAAG,YAAY,CAAC;AAErD,KAAK,yBAAyB,GAAG,OAAO,CACtC,MAAM,OAAO,cAAc,EAC3B,WAAW,CACZ,CAAC;AACF,KAAK,yBAAyB,GAAG,yBAAyB,CAAC;AAE3D,MAAM,MAAM,mBAAmB,GAC3B,yBAAyB,GACzB,yBAAyB,CAAC;AAE9B,MAAM,MAAM,UAAU,GAAG;IACvB,UAAU,EAAE,MAAM,CAAC,yBAAyB,EAAE,MAAM,CAAC,CAAC;IACtD,UAAU,EAAE,MAAM,CAAC,yBAAyB,EAAE,MAAM,CAAC,CAAC;CACvD,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG,MAAM,CAAC,yBAAyB,EAAE,MAAM,CAAC,CAAC;AAC9E,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,iBAAiB,CAAC,CAAC;AAElE,eAAO,MAAM,0BAA0B,EAAE,UA+DxC,CAAC"}
1
+ {"version":3,"file":"backward-compatible-versions.d.ts","sourceRoot":"","sources":["../../../../../packages/angular/src/utils/backward-compatible-versions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,cAAc,MAAM,YAAY,CAAC;AAE7C,KAAK,iBAAiB,GAAG,YAAY,GAAG,YAAY,CAAC;AAErD,KAAK,yBAAyB,GAAG,OAAO,CACtC,MAAM,OAAO,cAAc,EAC3B,WAAW,CACZ,CAAC;AACF,KAAK,yBAAyB,GAAG,yBAAyB,CAAC;AAE3D,MAAM,MAAM,mBAAmB,GAC3B,yBAAyB,GACzB,yBAAyB,CAAC;AAE9B,MAAM,MAAM,UAAU,GAAG;IACvB,UAAU,EAAE,MAAM,CAAC,yBAAyB,EAAE,MAAM,CAAC,CAAC;IACtD,UAAU,EAAE,MAAM,CAChB,yBAAyB,GAAG,sBAAsB,EAClD,MAAM,CACP,CAAC;CACH,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG,MAAM,CAAC,yBAAyB,EAAE,MAAM,CAAC,CAAC;AAC9E,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,iBAAiB,CAAC,CAAC;AAElE,eAAO,MAAM,0BAA0B,EAAE,UA8DxC,CAAC"}
@@ -6,7 +6,6 @@ exports.backwardCompatibleVersions = {
6
6
  angularVersion: '~18.2.0',
7
7
  angularDevkitVersion: '~18.2.0',
8
8
  ngPackagrVersion: '~18.2.0',
9
- angularRspackVersion: '~20.6.1',
10
9
  ngrxVersion: '~18.0.2',
11
10
  rxjsVersion: '~7.8.0',
12
11
  zoneJsVersion: '~0.14.3',
@@ -1,8 +1,7 @@
1
1
  export declare const nxVersion: any;
2
- export declare const angularVersion = "~20.1.0";
3
- export declare const angularDevkitVersion = "~20.1.0";
4
- export declare const ngPackagrVersion = "~20.1.0";
5
- export declare const angularRspackVersion = "^21.1.0";
2
+ export declare const angularVersion = "~20.2.0";
3
+ export declare const angularDevkitVersion = "~20.2.0";
4
+ export declare const ngPackagrVersion = "~20.2.0";
6
5
  export declare const ngrxVersion = "^20.0.0";
7
6
  export declare const rxjsVersion = "~7.8.0";
8
7
  export declare const zoneJsVersion = "~0.15.0";
@@ -16,7 +15,7 @@ export declare const browserSyncVersion = "^3.0.0";
16
15
  export declare const moduleFederationNodeVersion = "^2.7.11";
17
16
  export declare const moduleFederationEnhancedVersion = "^0.18.0";
18
17
  export declare const webpackMergeVersion = "^5.8.0";
19
- export declare const angularEslintVersion = "^20.0.0";
18
+ export declare const angularEslintVersion = "^20.2.0";
20
19
  export declare const typescriptEslintVersion = "^7.16.0";
21
20
  export declare const tailwindVersion = "^3.0.2";
22
21
  export declare const postcssVersion = "^8.4.5";
@@ -1 +1 @@
1
- {"version":3,"file":"versions.d.ts","sourceRoot":"","sources":["../../../../../packages/angular/src/utils/versions.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,SAAS,KAAwC,CAAC;AAE/D,eAAO,MAAM,cAAc,YAAY,CAAC;AACxC,eAAO,MAAM,oBAAoB,YAAY,CAAC;AAC9C,eAAO,MAAM,gBAAgB,YAAY,CAAC;AAC1C,eAAO,MAAM,oBAAoB,YAAY,CAAC;AAC9C,eAAO,MAAM,WAAW,YAAY,CAAC;AACrC,eAAO,MAAM,WAAW,WAAW,CAAC;AACpC,eAAO,MAAM,aAAa,YAAY,CAAC;AACvC,eAAO,MAAM,gBAAgB,UAAU,CAAC;AACxC,eAAO,MAAM,YAAY,WAAW,CAAC;AAErC,eAAO,MAAM,WAAW,WAAW,CAAC;AACpC,eAAO,MAAM,gBAAgB,WAAW,CAAC;AACzC,eAAO,MAAM,cAAc,YAAY,CAAC;AACxC,eAAO,MAAM,mBAAmB,aAAa,CAAC;AAC9C,eAAO,MAAM,kBAAkB,WAAW,CAAC;AAC3C,eAAO,MAAM,2BAA2B,YAAY,CAAC;AACrD,eAAO,MAAM,+BAA+B,YAAY,CAAC;AACzD,eAAO,MAAM,mBAAmB,WAAW,CAAC;AAE5C,eAAO,MAAM,oBAAoB,YAAY,CAAC;AAC9C,eAAO,MAAM,uBAAuB,YAAY,CAAC;AACjD,eAAO,MAAM,eAAe,WAAW,CAAC;AACxC,eAAO,MAAM,cAAc,WAAW,CAAC;AACvC,eAAO,MAAM,iBAAiB,YAAY,CAAC;AAC3C,eAAO,MAAM,mBAAmB,YAAY,CAAC;AAC7C,eAAO,MAAM,aAAa,WAAW,CAAC;AACtC,eAAO,MAAM,WAAW,WAAW,CAAC;AAEpC,eAAO,MAAM,wBAAwB,YAAY,CAAC;AAClD,eAAO,MAAM,gBAAgB,YAAY,CAAC;AAC1C,eAAO,MAAM,qBAAqB,WAAW,CAAC;AAE9C,eAAO,MAAM,wBAAwB,WAAW,CAAC"}
1
+ {"version":3,"file":"versions.d.ts","sourceRoot":"","sources":["../../../../../packages/angular/src/utils/versions.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,SAAS,KAAwC,CAAC;AAE/D,eAAO,MAAM,cAAc,YAAY,CAAC;AACxC,eAAO,MAAM,oBAAoB,YAAY,CAAC;AAC9C,eAAO,MAAM,gBAAgB,YAAY,CAAC;AAC1C,eAAO,MAAM,WAAW,YAAY,CAAC;AACrC,eAAO,MAAM,WAAW,WAAW,CAAC;AACpC,eAAO,MAAM,aAAa,YAAY,CAAC;AACvC,eAAO,MAAM,gBAAgB,UAAU,CAAC;AACxC,eAAO,MAAM,YAAY,WAAW,CAAC;AAErC,eAAO,MAAM,WAAW,WAAW,CAAC;AACpC,eAAO,MAAM,gBAAgB,WAAW,CAAC;AACzC,eAAO,MAAM,cAAc,YAAY,CAAC;AACxC,eAAO,MAAM,mBAAmB,aAAa,CAAC;AAC9C,eAAO,MAAM,kBAAkB,WAAW,CAAC;AAC3C,eAAO,MAAM,2BAA2B,YAAY,CAAC;AACrD,eAAO,MAAM,+BAA+B,YAAY,CAAC;AACzD,eAAO,MAAM,mBAAmB,WAAW,CAAC;AAE5C,eAAO,MAAM,oBAAoB,YAAY,CAAC;AAC9C,eAAO,MAAM,uBAAuB,YAAY,CAAC;AACjD,eAAO,MAAM,eAAe,WAAW,CAAC;AACxC,eAAO,MAAM,cAAc,WAAW,CAAC;AACvC,eAAO,MAAM,iBAAiB,YAAY,CAAC;AAC3C,eAAO,MAAM,mBAAmB,YAAY,CAAC;AAC7C,eAAO,MAAM,aAAa,WAAW,CAAC;AACtC,eAAO,MAAM,WAAW,WAAW,CAAC;AAEpC,eAAO,MAAM,wBAAwB,YAAY,CAAC;AAClD,eAAO,MAAM,gBAAgB,YAAY,CAAC;AAC1C,eAAO,MAAM,qBAAqB,WAAW,CAAC;AAE9C,eAAO,MAAM,wBAAwB,WAAW,CAAC"}
@@ -1,11 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.jsoncEslintParserVersion = exports.jasmineMarblesVersion = exports.typesNodeVersion = exports.jestPresetAngularVersion = exports.lessVersion = exports.tsNodeVersion = exports.autoprefixerVersion = exports.postcssUrlVersion = exports.postcssVersion = exports.tailwindVersion = exports.typescriptEslintVersion = exports.angularEslintVersion = exports.webpackMergeVersion = exports.moduleFederationEnhancedVersion = exports.moduleFederationNodeVersion = exports.browserSyncVersion = exports.typesExpressVersion = exports.expressVersion = exports.typesCorsVersion = exports.corsVersion = exports.tsLibVersion = exports.angularJsVersion = exports.zoneJsVersion = exports.rxjsVersion = exports.ngrxVersion = exports.angularRspackVersion = exports.ngPackagrVersion = exports.angularDevkitVersion = exports.angularVersion = exports.nxVersion = void 0;
3
+ exports.jsoncEslintParserVersion = exports.jasmineMarblesVersion = exports.typesNodeVersion = exports.jestPresetAngularVersion = exports.lessVersion = exports.tsNodeVersion = exports.autoprefixerVersion = exports.postcssUrlVersion = exports.postcssVersion = exports.tailwindVersion = exports.typescriptEslintVersion = exports.angularEslintVersion = exports.webpackMergeVersion = exports.moduleFederationEnhancedVersion = exports.moduleFederationNodeVersion = exports.browserSyncVersion = exports.typesExpressVersion = exports.expressVersion = exports.typesCorsVersion = exports.corsVersion = exports.tsLibVersion = exports.angularJsVersion = exports.zoneJsVersion = exports.rxjsVersion = exports.ngrxVersion = exports.ngPackagrVersion = exports.angularDevkitVersion = exports.angularVersion = exports.nxVersion = void 0;
4
4
  exports.nxVersion = require('../../package.json').version;
5
- exports.angularVersion = '~20.1.0';
6
- exports.angularDevkitVersion = '~20.1.0';
7
- exports.ngPackagrVersion = '~20.1.0';
8
- exports.angularRspackVersion = '^21.1.0';
5
+ exports.angularVersion = '~20.2.0';
6
+ exports.angularDevkitVersion = '~20.2.0';
7
+ exports.ngPackagrVersion = '~20.2.0';
9
8
  exports.ngrxVersion = '^20.0.0';
10
9
  exports.rxjsVersion = '~7.8.0';
11
10
  exports.zoneJsVersion = '~0.15.0';
@@ -19,7 +18,7 @@ exports.browserSyncVersion = '^3.0.0';
19
18
  exports.moduleFederationNodeVersion = '^2.7.11';
20
19
  exports.moduleFederationEnhancedVersion = '^0.18.0';
21
20
  exports.webpackMergeVersion = '^5.8.0';
22
- exports.angularEslintVersion = '^20.0.0';
21
+ exports.angularEslintVersion = '^20.2.0';
23
22
  exports.typescriptEslintVersion = '^7.16.0';
24
23
  exports.tailwindVersion = '^3.0.2';
25
24
  exports.postcssVersion = '^8.4.5';