@eui/tools 6.21.36 → 6.21.37
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.
- package/.version.properties +1 -1
- package/CHANGELOG.md +9 -0
- package/package.json +1 -1
- package/scripts/csdr/config/angular.js +9 -3
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.21.
|
|
1
|
+
6.21.37
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.21.37 (2025-01-14)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* adapted angular.json injection for host app above 18+ - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([b899079a](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/b899079aca6dacc0214512dc5d3b058ec0183dc1))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.21.36 (2025-01-13)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -377,9 +377,15 @@ module.exports.registerAngularProjectDef = (project, build = false, element = fa
|
|
|
377
377
|
|
|
378
378
|
let configurationDef, configurationDefOptimized;
|
|
379
379
|
if (project.build && project.build.csdrFileReplacement) {
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
380
|
+
if (packageEuiVersionNumber >= 18) {
|
|
381
|
+
tools.logInfo('Injecting angular configuration for 18+ - file replacement is handled by CSDR');
|
|
382
|
+
configurationDef = JSON.stringify(angularProjectDefConfigurationHostEsbuild);
|
|
383
|
+
configurationDefOptimized = JSON.stringify(angularProjectDefConfigurationOptimizedHostEsbuild);
|
|
384
|
+
} else {
|
|
385
|
+
tools.logInfo('Injecting light angular configuration - file replacement is handled by CSDR');
|
|
386
|
+
configurationDef = JSON.stringify(angularProjectDefConfigurationLight);
|
|
387
|
+
configurationDefOptimized = JSON.stringify(angularProjectDefConfigurationOptimizedLight);
|
|
388
|
+
}
|
|
383
389
|
} else {
|
|
384
390
|
tools.logInfo('Injecting angular configuration file replacement');
|
|
385
391
|
if (project.host) {
|