@eui/tools 6.13.9 → 6.13.11

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.13.9
1
+ 6.13.11
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 6.13.11 (2023-11-22)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * add pipeline link when launching package build - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([a672c5e6](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/a672c5e6b53110aed4dfde159fd510f88c28a222))
7
+
8
+ * * *
9
+ * * *
10
+ ## 6.13.10 (2023-11-22)
11
+
12
+ ##### Chores
13
+
14
+ * **other:**
15
+ * added pipelineId to slack release package - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([551b97f2](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/551b97f2be80074daac727e3f58ddb6795f879bc))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 6.13.9 (2023-11-15)
2
20
 
3
21
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.13.9",
3
+ "version": "6.13.11",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -12,7 +12,7 @@ const versionUtils = require('../../version/version-utils');
12
12
  const configUtils = require('../../config/config-utils');
13
13
 
14
14
  // GLOBAL ARGS
15
- const { dryRun } = utils.tools.getArgs();
15
+ const { dryRun, pipelineId } = utils.tools.getArgs();
16
16
 
17
17
 
18
18
 
@@ -135,6 +135,17 @@ module.exports.init = (pkg, envTarget, compositeType) => {
135
135
  });
136
136
  })
137
137
 
138
+ .then(() => {
139
+ if (pipelineId) {
140
+ const launchMessage = `:arrow_forward: :arrow_forward: Pipeline ID : https://gitlab.ecdevops.eu/eui/cc-csdr-root/-/pipelines/${pipelineId}`;
141
+
142
+ return utils.notification.package.sendPackageMessage({
143
+ package: pkg,
144
+ text: launchMessage
145
+ });
146
+ }
147
+ })
148
+
138
149
  .catch((e) => {
139
150
  throw e;
140
151
  })