@eui/tools 6.2.19 → 6.2.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.
- package/.version.properties +1 -1
- package/CHANGELOG.md +18 -0
- package/package.json +1 -1
- package/scripts/csdr/init/packages.js +1 -1
- package/scripts/csdr/init/remotes/15.x/package.json_TO_REPLACE +7 -1
- package/scripts/csdr/install/local-dev.js +1 -6
- package/scripts/csdr/release/package/common.js +1 -1
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.2.
|
|
1
|
+
6.2.21
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.2.21 (2022-11-14)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* wrong pkg gathered on normal package installation - MWP-9010 [MWP-9010](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-9010) ([84a6147d](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/84a6147da6a3c13a4f4a638fba0990c8a070ed02))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.2.20 (2022-11-12)
|
|
11
|
+
|
|
12
|
+
##### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* wrong destination path post-build - MWP-9010 [MWP-9010](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-9010) ([d71e8385](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/d71e8385fe0d7d83ecad859c8e594c519e0f580f))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.2.19 (2022-11-12)
|
|
2
20
|
|
|
3
21
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -102,7 +102,7 @@ module.exports.cloneHostPackage = (projectName) => {
|
|
|
102
102
|
if (!pkg) {
|
|
103
103
|
throw new Error('Invalid host package provided / unknown to CSDR config');
|
|
104
104
|
}
|
|
105
|
-
return gitUtils.cloneAndCheckout(pkg.repository, path.join(process.cwd(), 'packages', pkg.name), '
|
|
105
|
+
return gitUtils.cloneAndCheckout(pkg.repository, path.join(process.cwd(), 'packages', pkg.name), 'master');
|
|
106
106
|
})
|
|
107
107
|
|
|
108
108
|
.then(() => {
|
|
@@ -12,12 +12,7 @@ const innerProjects = require('./projects');
|
|
|
12
12
|
const innerPackages = require('./packages');
|
|
13
13
|
|
|
14
14
|
module.exports.installPackage = (pkgName) => {
|
|
15
|
-
|
|
16
|
-
const pkg = configUtils.remotes.getRemote(pkgName);
|
|
17
|
-
|
|
18
|
-
if (!pkg) {
|
|
19
|
-
pkg = configUtils.packages.getPackage(pkgName, false, true);
|
|
20
|
-
}
|
|
15
|
+
pkg = configUtils.packages.getPackage(pkgName, false, true);
|
|
21
16
|
|
|
22
17
|
return Promise.resolve()
|
|
23
18
|
.then(() => {
|
|
@@ -609,7 +609,7 @@ module.exports.exportPipelineVariables = (pkg, compositeType) => {
|
|
|
609
609
|
utils.tools.logWarning('dryRun...skipping export');
|
|
610
610
|
} else {
|
|
611
611
|
utils.tools.logInfo('Exporting appTarget variable');
|
|
612
|
-
return utils.pipeline.setVariables(pkg.paths.
|
|
612
|
+
return utils.pipeline.setVariables(pkg.paths.root, variablesContent);
|
|
613
613
|
}
|
|
614
614
|
}
|
|
615
615
|
})
|