@eui/tools 6.14.3 → 6.14.5
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.5
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.14.5 (2023-12-05)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* 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))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.14.4 (2023-12-04)
|
|
11
|
+
|
|
12
|
+
##### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* add missing devops-metadata clone for group release - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([461f9978](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/461f99783dc8980b5bcf81b6c496e69a7c89bbf5))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.14.3 (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(() => {
|
|
@@ -75,6 +75,13 @@ module.exports.run = () => {
|
|
|
75
75
|
utils.tools.logTitle('-------------------------------------------------------------');
|
|
76
76
|
})
|
|
77
77
|
|
|
78
|
+
// *****************************************************************
|
|
79
|
+
// CLONE METADATA REPO
|
|
80
|
+
// *****************************************************************
|
|
81
|
+
.then(() => {
|
|
82
|
+
return metadataUtils.common.cloneMetadataRepo(true);
|
|
83
|
+
})
|
|
84
|
+
|
|
78
85
|
// *****************************************************************
|
|
79
86
|
// GET AND CHECK DEVOPS CONFIG
|
|
80
87
|
// *****************************************************************
|
|
@@ -333,9 +340,9 @@ const releaseProject = (projectName, isSnapshot, isSupportBranch, branch) => {
|
|
|
333
340
|
})
|
|
334
341
|
|
|
335
342
|
// store package config in the root folder to send config to gitlab
|
|
336
|
-
.then(() => {
|
|
337
|
-
|
|
338
|
-
})
|
|
343
|
+
// .then(() => {
|
|
344
|
+
// return utils.notification.config.storeProjectConfig(project);
|
|
345
|
+
// })
|
|
339
346
|
|
|
340
347
|
.then(() => {
|
|
341
348
|
utils.notification.messageStack.endStack();
|
|
@@ -358,9 +365,9 @@ const releaseProject = (projectName, isSnapshot, isSupportBranch, branch) => {
|
|
|
358
365
|
})
|
|
359
366
|
|
|
360
367
|
// store package config in the root folder to send config to gitlab
|
|
361
|
-
.then(() => {
|
|
362
|
-
|
|
363
|
-
})
|
|
368
|
+
// .then(() => {
|
|
369
|
+
// return utils.notification.config.storeProjectConfig(project);
|
|
370
|
+
// })
|
|
364
371
|
.then(() => {
|
|
365
372
|
utils.notification.messageStack.endStack();
|
|
366
373
|
return utils.notification.messageStack.sendProjectMessage(project);
|