@eui/tools 6.21.85 → 6.21.86
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.21.
|
|
1
|
+
6.21.86
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.21.86 (2025-06-10)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* adapted maven command - EUI-10199 [EUI-10199](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-10199) ([afd67e75](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/afd67e7578d98894c0e4d1ddc42fa35d1a0482e4))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.21.85 (2025-06-02)
|
|
2
11
|
|
|
3
12
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -6,96 +6,3 @@ module.exports.prompt = () => {
|
|
|
6
6
|
);
|
|
7
7
|
throw new Error('SCRIPT_DISCONTINUED');
|
|
8
8
|
};
|
|
9
|
-
|
|
10
|
-
// module.exports.prompt = () => {
|
|
11
|
-
|
|
12
|
-
// const inquirer = require('inquirer');
|
|
13
|
-
// const constants = require('./constants');
|
|
14
|
-
// return Promise.resolve()
|
|
15
|
-
// .then(() => {
|
|
16
|
-
// return inquirer.prompt([
|
|
17
|
-
// {
|
|
18
|
-
// type: 'list',
|
|
19
|
-
// name: 'pkgType',
|
|
20
|
-
// message: 'Select a package type :',
|
|
21
|
-
// choices: [
|
|
22
|
-
// { name: 'Frontend - Angular library', value: constants.CONFIG_OPTIONS.pkgType.FRONTEND },
|
|
23
|
-
// { name: 'Backend - SpringBoot micro-service', value: constants.CONFIG_OPTIONS.pkgType.BACKEND },
|
|
24
|
-
// ],
|
|
25
|
-
// default: constants.DEFAULT_CONFIG.pkgType,
|
|
26
|
-
// validate: function (value) {
|
|
27
|
-
// if (value.length) {
|
|
28
|
-
// return true;
|
|
29
|
-
// }
|
|
30
|
-
// }
|
|
31
|
-
// },
|
|
32
|
-
// {
|
|
33
|
-
// name: 'pkgGroupId',
|
|
34
|
-
// type: 'input',
|
|
35
|
-
// message: 'Enter the Maven groupId :',
|
|
36
|
-
// default: constants.DEFAULT_CONFIG.pkgGroupId,
|
|
37
|
-
// when: function (answers) {
|
|
38
|
-
// return (answers.pkgType === constants.CONFIG_OPTIONS.pkgType.BACKEND);
|
|
39
|
-
// }
|
|
40
|
-
// },
|
|
41
|
-
// {
|
|
42
|
-
// type: 'list',
|
|
43
|
-
// name: 'pkgFrontendType',
|
|
44
|
-
// message: 'Select a frontend type :',
|
|
45
|
-
// choices: [
|
|
46
|
-
// { name: 'Default Angular library', value: constants.CONFIG_OPTIONS.pkgFrontendType.DEFAULT },
|
|
47
|
-
// { name: 'Remote element micro-frontend', value: constants.CONFIG_OPTIONS.pkgFrontendType.REMOTE },
|
|
48
|
-
// ],
|
|
49
|
-
// default: constants.DEFAULT_CONFIG.pkgFrontendType,
|
|
50
|
-
// when: function (answers) {
|
|
51
|
-
// return (answers.pkgType === constants.CONFIG_OPTIONS.pkgType.FRONTEND);
|
|
52
|
-
// },
|
|
53
|
-
// validate: function (value) {
|
|
54
|
-
// if (value.length) {
|
|
55
|
-
// return true;
|
|
56
|
-
// }
|
|
57
|
-
// }
|
|
58
|
-
// },
|
|
59
|
-
|
|
60
|
-
// {
|
|
61
|
-
// name: 'pkgScope',
|
|
62
|
-
// type: 'input',
|
|
63
|
-
// message: 'Enter the package scope :',
|
|
64
|
-
// default: constants.DEFAULT_CONFIG.pkgScope
|
|
65
|
-
// },
|
|
66
|
-
// {
|
|
67
|
-
// name: 'pkgName',
|
|
68
|
-
// type: 'input',
|
|
69
|
-
// message: 'Enter the package name :',
|
|
70
|
-
// default: constants.DEFAULT_CONFIG.pkgName
|
|
71
|
-
// },
|
|
72
|
-
// {
|
|
73
|
-
// name: 'isCsdrRepo',
|
|
74
|
-
// type: 'confirm',
|
|
75
|
-
// message: 'Is the repository within CSDR git project ?',
|
|
76
|
-
// default: constants.DEFAULT_CONFIG.isCsdrRepo,
|
|
77
|
-
// when: function (answers) {
|
|
78
|
-
// return (
|
|
79
|
-
// answers.pkgType === constants.CONFIG_OPTIONS.pkgType.FRONTEND &&
|
|
80
|
-
// answers.pkgFrontendType === constants.CONFIG_OPTIONS.pkgFrontendType.DEFAULT
|
|
81
|
-
// );
|
|
82
|
-
// }
|
|
83
|
-
// },
|
|
84
|
-
// {
|
|
85
|
-
// name: 'externalRepoName',
|
|
86
|
-
// type: 'input',
|
|
87
|
-
// message: 'Enter the project CITnet project name where the repository is located :',
|
|
88
|
-
// default: constants.DEFAULT_CONFIG.externalRepoName,
|
|
89
|
-
// when: function (answers) {
|
|
90
|
-
// return (
|
|
91
|
-
// answers.isCsdrRepo === false
|
|
92
|
-
// );
|
|
93
|
-
// }
|
|
94
|
-
// },
|
|
95
|
-
// ]);
|
|
96
|
-
// })
|
|
97
|
-
|
|
98
|
-
// .catch((e) => {
|
|
99
|
-
// throw e;
|
|
100
|
-
// })
|
|
101
|
-
// }
|
|
@@ -25,7 +25,7 @@ const execute = (folder, command = 'clean test package') => {
|
|
|
25
25
|
})
|
|
26
26
|
.then((mavenSettingsFile) => {
|
|
27
27
|
tools.logInfo('Executing maven build...');
|
|
28
|
-
return execa.shellSync(`mvn ${command}
|
|
28
|
+
return execa.shellSync(`mvn ${command}`, execaOptions);
|
|
29
29
|
})
|
|
30
30
|
.catch((e) => {
|
|
31
31
|
throw e;
|