@eui/tools 6.14.20 → 6.14.21

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.20
1
+ 6.14.21
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.14.21 (2023-12-15)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * envTargetGen incorrectly set for non-MWP envTarget cycle builds - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([c5adc33d](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/c5adc33d4136bb430e8ee23fce3fda6665d8bbb4))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.14.20 (2023-12-14)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.14.20",
3
+ "version": "6.14.21",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -46,15 +46,6 @@ module.exports.run = () => {
46
46
  isMaster = branch === 'master';
47
47
  }
48
48
 
49
- // deducting envTarget from branch
50
- let envTargetGen;
51
-
52
- if (isSnapshot || isSupportSnapshotBranch) {
53
- envTargetGen = 'DEV';
54
- } else {
55
- envTargetGen = 'PROD';
56
- }
57
-
58
49
  // Starting the release process
59
50
  return (
60
51
  Promise.resolve()
@@ -61,7 +61,7 @@ module.exports.run = () => {
61
61
  if (isSnapshot || isSupportSnapshotBranch) {
62
62
  envTargetGen = 'DEV';
63
63
  } else {
64
- envTargetGen = 'PROD';
64
+ envTargetGen = 'TST';
65
65
  }
66
66
  }
67
67