@eui/tools 5.1.0 → 5.1.3
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
|
-
5.1.
|
|
1
|
+
5.1.3
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
## 5.1.3 (2022-04-28)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* wrong function call - EUI-5632 [EUI-5632](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-5632) ([2eb3bddd](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/2eb3bdddf2de7c0f44b936ce8cb443fcb9817e5e))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 5.1.2 (2022-04-28)
|
|
11
|
+
|
|
12
|
+
##### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* wrong import of metadataUtils - EUI-5632 [EUI-5632](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-5632) ([9e4c5fe8](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/9e4c5fe8dc53c44c3b2753b44d0014177c5b76f6))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
19
|
+
## 5.1.1 (2022-04-28)
|
|
20
|
+
|
|
21
|
+
##### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* **other:**
|
|
24
|
+
* wrong declaration - EUI-5632 [EUI-5632](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-5632) ([a987893a](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/a987893a705fd28dc4965d6d47ceae308174a0ee))
|
|
25
|
+
* downgraded mocha to 8.4.0 for nodejs10 mwp backward compat - EUI-5632 [EUI-5632](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-5632) ([956e8437](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/956e8437edd0550943fc06d17d2daf8628b33a7a))
|
|
26
|
+
|
|
27
|
+
* * *
|
|
28
|
+
* * *
|
|
1
29
|
## 5.1.0 (2022-04-27)
|
|
2
30
|
|
|
3
31
|
##### Chores
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eui/tools",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.3",
|
|
4
4
|
"tag": "latest",
|
|
5
5
|
"license": "EUPL-1.1",
|
|
6
6
|
"description": "eUI common tools and scripts",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"postcss": "7.0.36",
|
|
39
39
|
"cssnano": "4.1.11",
|
|
40
40
|
"extend": "3.0.2",
|
|
41
|
-
"mocha": "
|
|
41
|
+
"mocha": "8.4.0",
|
|
42
42
|
"chai": "4.3.6",
|
|
43
43
|
"nyc": "15.1.0",
|
|
44
44
|
"node-fetch": "2.6.7",
|
|
@@ -7,6 +7,7 @@ const path = require('path');
|
|
|
7
7
|
// LOCAL
|
|
8
8
|
const tools = require('../../utils/tools');
|
|
9
9
|
const configUtils = require('../config/config-utils');
|
|
10
|
+
const metadataUtils = require('../metadata/metadata-utils');
|
|
10
11
|
|
|
11
12
|
// INNER MODULES
|
|
12
13
|
const innerCommon = require('./common');
|
|
@@ -23,7 +24,7 @@ const getDeps = module.exports.getDeps = (prj, envTarget, compositeType) => {
|
|
|
23
24
|
return metadataUtils.appEnvs.getMetadata(prj);
|
|
24
25
|
})
|
|
25
26
|
.then((envsMetadata) => {
|
|
26
|
-
return innerCompositeCore.
|
|
27
|
+
return innerCompositeCore.getCompositeDeps(
|
|
27
28
|
prj.folder,
|
|
28
29
|
envTarget,
|
|
29
30
|
compositeType,
|
|
@@ -37,7 +37,7 @@ const getBranches = module.exports.getBranches = () => {
|
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
module.exports.getEnvTarget = () => {
|
|
40
|
-
|
|
40
|
+
var { envTarget } = utils.tools.getArgs();
|
|
41
41
|
|
|
42
42
|
// Initialize composite type
|
|
43
43
|
if (envTarget && typeof (envTarget) === 'boolean') {
|