@eui/tools 5.3.61 → 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
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.3.
|
|
1
|
+
5.3.62
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
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
|
+
* * *
|
|
1
10
|
## 5.3.61 (2022-09-26)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -55,7 +55,7 @@ module.exports.injectCsdrFullSkeletonSources = (project, euiVersion) => {
|
|
|
55
55
|
// copying skeleton sources
|
|
56
56
|
if (euiVersion === '13.x') {
|
|
57
57
|
tools.copydir(path.join(__dirname, 'app-sources-full-skeleton-eui13'), project.folder, false);
|
|
58
|
-
} else if (euiVersion === '14.x') {
|
|
58
|
+
} else if (euiVersion === '14.x' || euiVersion === '15.x') {
|
|
59
59
|
tools.copydir(path.join(__dirname, 'app-sources-full-skeleton-eui14'), project.folder, false);
|
|
60
60
|
} else {
|
|
61
61
|
tools.copydir(path.join(__dirname, 'app-sources-full-skeleton'), project.folder, false);
|
|
@@ -79,6 +79,8 @@ module.exports.preBuild = (project, envTarget, build, configEnvTarget) => {
|
|
|
79
79
|
return injectionUtils.skeletons.injectCsdrFullSkeletonSources(project, '13.x');
|
|
80
80
|
} else if (project.build && project.build.euiVersion === '14.x') {
|
|
81
81
|
return injectionUtils.skeletons.injectCsdrFullSkeletonSources(project, '14.x');
|
|
82
|
+
} else if (project.build && project.build.euiVersion === '15.x') {
|
|
83
|
+
return injectionUtils.skeletons.injectCsdrFullSkeletonSources(project, '15.x');
|
|
82
84
|
} else {
|
|
83
85
|
return injectionUtils.skeletons.injectCsdrFullSkeletonSources(project);
|
|
84
86
|
}
|