@eui/tools 6.14.4 → 6.14.6
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
|
-
6.14.
|
|
1
|
+
6.14.6
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.14.6 (2023-12-05)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* s3 buckets delivery message for app group releases wrongly declared - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([e43cee9a](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/e43cee9a04ba341d8ac444d2289b557f5ecfda2d))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.14.5 (2023-12-05)
|
|
11
|
+
|
|
12
|
+
##### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* missing tsconfig files initialization for projects group release - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([2dfa4e1f](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/2dfa4e1f1d5ae447766dbb54d7fa93393719aeaa))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.14.4 (2023-12-04)
|
|
2
20
|
|
|
3
21
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -28,6 +28,11 @@ module.exports.init = (finalResponse) => {
|
|
|
28
28
|
}
|
|
29
29
|
})
|
|
30
30
|
|
|
31
|
+
// check and create tsconfig root files
|
|
32
|
+
.then(() => {
|
|
33
|
+
return configUtils.angular.checkConfigFiles(true);
|
|
34
|
+
})
|
|
35
|
+
|
|
31
36
|
// adapt and inject particular root data/config for eUI version detected on project
|
|
32
37
|
// if multiple versions of eUI are detected on the same project, an exception is thrown
|
|
33
38
|
.then(() => {
|
|
@@ -139,7 +139,8 @@ module.exports.run = () => {
|
|
|
139
139
|
})
|
|
140
140
|
|
|
141
141
|
.catch((e) => {
|
|
142
|
-
|
|
142
|
+
console.log(e);
|
|
143
|
+
process.exit(1);
|
|
143
144
|
})
|
|
144
145
|
);
|
|
145
146
|
};
|
|
@@ -285,10 +286,8 @@ const releaseProject = (projectName, isSnapshot, isSupportBranch, branch) => {
|
|
|
285
286
|
|
|
286
287
|
bucketsDelivered++;
|
|
287
288
|
}
|
|
288
|
-
})
|
|
289
289
|
|
|
290
|
-
|
|
291
|
-
.then(() => {
|
|
290
|
+
// sending s3 delivery message
|
|
292
291
|
return utils.notification.project.sendProjectMessage({
|
|
293
292
|
project: project,
|
|
294
293
|
text: `:dart: *${project.name}* - *${bucketsDelivered}* S3 buckets published`,
|