@eui/tools 6.2.12 → 6.2.13
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 +9 -0
- package/package.json +1 -1
- package/scripts/csdr/init/remotes.js +5 -4
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.2.
|
|
1
|
+
6.2.13
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.2.13 (2022-11-12)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* wrong order calls before first pull of remotes config for virtual remotes release pipeline - MWP-9010 [MWP-9010](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-9010) ([af475fdf](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/af475fdf1c98352fe4dd94af1787c5a8bdbfbc2a))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.2.12 (2022-11-12)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -19,15 +19,16 @@ const cloneRemotesConfig = module.exports.cloneRemotesConfig = () => {
|
|
|
19
19
|
return Promise.resolve()
|
|
20
20
|
.then(() => {
|
|
21
21
|
pkg = configUtils.packages.getPackageByNpmPkg('@csdr/remotes-config', true);
|
|
22
|
-
return gitUtils.cloneAndCheckout(pkg.repository, path.join(process.cwd(), 'packages', pkg.name), 'master');
|
|
23
|
-
})
|
|
24
22
|
|
|
25
|
-
.then(() => {
|
|
26
23
|
const newPackages = [];
|
|
27
24
|
newPackages.push(pkg.name);
|
|
28
25
|
return configUtils.global.updateConfig(null, newPackages);
|
|
29
26
|
})
|
|
30
27
|
|
|
28
|
+
.then(() => {
|
|
29
|
+
return gitUtils.cloneAndCheckout(pkg.repository, path.join(process.cwd(), 'packages', pkg.name), 'master');
|
|
30
|
+
})
|
|
31
|
+
|
|
31
32
|
.catch((e) => {
|
|
32
33
|
throw e;
|
|
33
34
|
})
|
|
@@ -36,7 +37,7 @@ const cloneRemotesConfig = module.exports.cloneRemotesConfig = () => {
|
|
|
36
37
|
|
|
37
38
|
|
|
38
39
|
module.exports.generateVirtualRemote = (remoteName, euiVersion) => {
|
|
39
|
-
tools.logTitle('
|
|
40
|
+
tools.logTitle('Generating virtual remote');
|
|
40
41
|
|
|
41
42
|
return Promise.resolve()
|
|
42
43
|
|