@eui/tools 6.14.5 → 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.
@@ -1 +1 @@
1
- 6.14.5
1
+ 6.14.6
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
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
+ * * *
1
10
  ## 6.14.5 (2023-12-05)
2
11
 
3
12
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.14.5",
3
+ "version": "6.14.6",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -139,7 +139,8 @@ module.exports.run = () => {
139
139
  })
140
140
 
141
141
  .catch((e) => {
142
- throw e;
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
- // sending s3 delivery message
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`,