@eui/tools 6.14.0 → 6.14.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.
- package/.version.properties +1 -1
- package/CHANGELOG.md +18 -0
- package/bin/eui-scripts.js +1 -0
- package/package.json +1 -1
- package/scripts/csdr/config/global.js +22 -20
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.14.
|
|
1
|
+
6.14.2
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.14.2 (2023-12-04)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* missing release-app-group script - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([bed9de78](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/bed9de780aae922c856e5c616bda1da5bd0d197d))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.14.1 (2023-12-04)
|
|
11
|
+
|
|
12
|
+
##### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* generate config when only projects array exists - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([df74f311](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/df74f311008a71a6c7d93b30db397ecc57c68421))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.14.0 (2023-12-04)
|
|
2
20
|
|
|
3
21
|
##### New Features
|
package/bin/eui-scripts.js
CHANGED
package/package.json
CHANGED
|
@@ -102,30 +102,32 @@ const getGeneratedConfig = (euircBaseFile) => {
|
|
|
102
102
|
})
|
|
103
103
|
|
|
104
104
|
// remapping projects against csdr packages config
|
|
105
|
-
configContent.packages
|
|
106
|
-
|
|
105
|
+
if (configContent.packages) {
|
|
106
|
+
configContent.packages.forEach((p) => {
|
|
107
|
+
genConfig.packages[p] = globalConfig.packages[p];
|
|
107
108
|
|
|
108
|
-
|
|
109
|
-
|
|
109
|
+
// checking if package has config override in its own folder
|
|
110
|
+
const pkgCsdrConfig = path.join(process.cwd(), 'packages', p, '.csdr-config.json');
|
|
110
111
|
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
112
|
+
if (tools.isFileExists(pkgCsdrConfig)) {
|
|
113
|
+
const pkgCsdrConfigJson = require(pkgCsdrConfig);
|
|
114
|
+
genConfig.packages[p] = pkgCsdrConfigJson;
|
|
115
|
+
}
|
|
116
|
+
})
|
|
116
117
|
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
118
|
+
// treating parent / children packages
|
|
119
|
+
Object.keys(genConfig.packages).forEach((p) => {
|
|
120
|
+
// getting package
|
|
121
|
+
const pkg = genConfig.packages[p];
|
|
121
122
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
123
|
+
// insert children packages if any
|
|
124
|
+
if (pkg && pkg.parent) {
|
|
125
|
+
Object.keys(pkg.packages).forEach((pc) => {
|
|
126
|
+
genConfig.packages[pc] = pkg.packages[pc];
|
|
127
|
+
})
|
|
128
|
+
}
|
|
129
|
+
})
|
|
130
|
+
}
|
|
129
131
|
|
|
130
132
|
// remapping remotes
|
|
131
133
|
if (configContent.remotes) {
|