@eui/tools 5.3.60 → 5.3.62
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 +18 -0
- package/package.json +1 -1
- package/scripts/csdr/config/angular.js +3 -3
- package/scripts/csdr/init/resources/15.x/browserslistrc +6 -0
- package/scripts/csdr/init/resources/15.x/resolutions.json.temp +6 -0
- package/scripts/csdr/init/resources/15.x/yarn.lock.temp +13999 -0
- package/scripts/utils/build/package/styles.js +7 -1
- package/scripts/utils/pre-build/injection/skeletons.js +1 -1
- package/scripts/utils/pre-build/projects.js +2 -0
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.3.
|
|
1
|
+
5.3.62
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 5.3.62 (2022-09-26)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* adapted for eUI 15 showcase - EUI-6448 [EUI-6448](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6448) ([5f738fd2](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/5f738fd2d86caeb11605a677287d5e2cd1b0bb66))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 5.3.61 (2022-09-26)
|
|
11
|
+
|
|
12
|
+
##### Chores
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* adapted entries for eUI 15.x build - EUI-6448 [EUI-6448](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6448) ([df3f5870](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/df3f587051d5f6d47673b3bbe9f8697a217ad197))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 5.3.60 (2022-09-26)
|
|
2
20
|
|
|
3
21
|
##### Chores
|
package/package.json
CHANGED
|
@@ -1418,7 +1418,7 @@ module.exports.registerAngularPackage = (pkg, isReset) => {
|
|
|
1418
1418
|
if (packageEuiVersion === '13.x') {
|
|
1419
1419
|
projectDef = JSON.stringify(angularPackageDefV13);
|
|
1420
1420
|
}
|
|
1421
|
-
if (packageEuiVersion === '14.x') {
|
|
1421
|
+
if (packageEuiVersion === '14.x' || packageEuiVersion === '15.x') {
|
|
1422
1422
|
projectDef = JSON.stringify(angularPackageDefV14);
|
|
1423
1423
|
}
|
|
1424
1424
|
|
|
@@ -1494,7 +1494,7 @@ module.exports.registerAngularProjectDef = (project, build = false) => {
|
|
|
1494
1494
|
if (project.csdrFullSkeleton) {
|
|
1495
1495
|
if (project.build && project.build.euiVersion === '13.x') {
|
|
1496
1496
|
projectDef = JSON.stringify(angularProjectDefFullSkeletonV13);
|
|
1497
|
-
} else if (project.build && project.build.euiVersion === '14.x') {
|
|
1497
|
+
} else if (project.build && (project.build.euiVersion === '14.x' || project.build.euiVersion === '15.x')) {
|
|
1498
1498
|
projectDef = JSON.stringify(angularProjectDefFullSkeletonV14);
|
|
1499
1499
|
} else {
|
|
1500
1500
|
projectDef = JSON.stringify(angularProjectDefFullSkeleton);
|
|
@@ -1503,7 +1503,7 @@ module.exports.registerAngularProjectDef = (project, build = false) => {
|
|
|
1503
1503
|
} else {
|
|
1504
1504
|
if (project.build && project.build.euiVersion === '13.x') {
|
|
1505
1505
|
projectDef = JSON.stringify(angularProjectDefV13);
|
|
1506
|
-
} else if (project.build && project.build.euiVersion === '14.x') {
|
|
1506
|
+
} else if (project.build && (project.build.euiVersion === '14.x' || project.build.euiVersion === '15.x')) {
|
|
1507
1507
|
projectDef = JSON.stringify(angularProjectDefV14);
|
|
1508
1508
|
} else {
|
|
1509
1509
|
if (project.build && project.build.csdrFileReplacement === true) {
|