@eui/tools 5.3.59 → 5.3.61

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.
@@ -1 +1 @@
1
- 5.3.59
1
+ 5.3.61
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 5.3.61 (2022-09-26)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * 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))
7
+
8
+ * * *
9
+ * * *
10
+ ## 5.3.60 (2022-09-26)
11
+
12
+ ##### Chores
13
+
14
+ * **other:**
15
+ * remove devops-medata repos cloning for backend builds - EUI-4107 [EUI-4107](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4107) ([c88fca91](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/c88fca91f3dc37cf9fcf4f99b5db6eee6f63296d))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 5.3.59 (2022-09-26)
2
20
 
3
21
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "5.3.59",
3
+ "version": "5.3.61",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -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) {
@@ -0,0 +1,6 @@
1
+ last 1 Chrome version
2
+ last 1 Firefox version
3
+ last 2 Edge major versions
4
+ last 2 Safari major versions
5
+ last 2 iOS major versions
6
+ Firefox ESR
@@ -0,0 +1,6 @@
1
+ {
2
+ "@types/node": ">=14.14.10",
3
+ "https-proxy-agent": ">=2.2.3",
4
+ "mem": ">=4.3.0 <=8.1.1",
5
+ "zone.js": ">=0.11.5"
6
+ }