@eui/tools 6.14.6 → 6.14.8
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.8
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.14.8 (2023-12-06)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **remote:**
|
|
6
|
+
* force default resolutions for v10 remotes build - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([c877ebc4](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/c877ebc4687b322c39ee2f54e81bd68ef1bf623c))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.14.7 (2023-12-05)
|
|
11
|
+
|
|
12
|
+
##### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* wrong branching set for getting version for app-group release - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([2b428c5d](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/2b428c5d0145823630998f99506fa38880e318bc))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.14.6 (2023-12-05)
|
|
2
20
|
|
|
3
21
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -38,14 +38,12 @@ module.exports.run = () => {
|
|
|
38
38
|
let isSupportBranch;
|
|
39
39
|
let isSnapshot;
|
|
40
40
|
let isMaster;
|
|
41
|
-
let isSupport;
|
|
42
41
|
|
|
43
42
|
if (branch) {
|
|
44
43
|
isSupportSnapshotBranch = branch !== 'master' && branch.indexOf('support/develop') > -1;
|
|
45
44
|
isSupportBranch = branch !== 'master' && !isSupportSnapshotBranch && branch.indexOf('support/') > -1;
|
|
46
45
|
isSnapshot = branch !== 'master' && !isSupportBranch;
|
|
47
46
|
isMaster = branch === 'master';
|
|
48
|
-
isSupport = branch !== 'master' && branch.indexOf('support/') > -1;
|
|
49
47
|
}
|
|
50
48
|
|
|
51
49
|
// deducting envTarget from branch
|
|
@@ -117,7 +115,7 @@ module.exports.run = () => {
|
|
|
117
115
|
.then(() => {
|
|
118
116
|
const fixedDeps = configUtils.global.getConfigOptions().NPM_FIXED_DEPENDENCIES;
|
|
119
117
|
const configDeps = { ...resolvedDeps, ...fixedDeps };
|
|
120
|
-
return installUtils.common.getResolvedCarretDeps(configDeps, isMaster ||
|
|
118
|
+
return installUtils.common.getResolvedCarretDeps(configDeps, isMaster || isSupportBranch);
|
|
121
119
|
})
|
|
122
120
|
|
|
123
121
|
// Install dependencies
|