@eui/tools 6.3.37 → 6.3.38
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.3.
|
|
1
|
+
6.3.38
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.3.38 (2023-02-19)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* enable alternate registry sync and install - EUI-6448 [EUI-6448](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6448) ([a6908dcb](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/a6908dcbba464c78162641bd1173df6b69688cbb))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.3.37 (2023-02-17)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -7,6 +7,10 @@ const path = require('path');
|
|
|
7
7
|
const tools = require('../../utils/tools');
|
|
8
8
|
const configUtils = require('../config/config-utils');
|
|
9
9
|
|
|
10
|
+
// ARGS
|
|
11
|
+
const { registry } = tools.getArgs();
|
|
12
|
+
|
|
13
|
+
|
|
10
14
|
|
|
11
15
|
module.exports.processLocalEuiVersions = () => {
|
|
12
16
|
tools.logTitle('Processing injections for local installed eUI versions if needed');
|
|
@@ -52,6 +56,11 @@ module.exports.processLocalEuiVersions = () => {
|
|
|
52
56
|
|
|
53
57
|
tools.logInfo(`Processing yarn.lock replacement for eUI version found : ${euiVersion}`);
|
|
54
58
|
|
|
59
|
+
if (registry) {
|
|
60
|
+
tools.logInfo('Alternate registry found...skipping yarn.lock remplacement');
|
|
61
|
+
return;
|
|
62
|
+
}
|
|
63
|
+
|
|
55
64
|
const yResourcesFile = path.join(__dirname, 'resources', euiVersion, 'yarn.lock');
|
|
56
65
|
const yDestFile = path.join(process.cwd(), 'yarn.lock');
|
|
57
66
|
|
|
@@ -5,10 +5,13 @@ const path = require('path');
|
|
|
5
5
|
|
|
6
6
|
const initUtils = require('../init/init-utils');
|
|
7
7
|
const configUtils = require('../config/config-utils');
|
|
8
|
+
const installUtils = require('../install/install-utils');
|
|
8
9
|
|
|
9
10
|
const tools = require('../../utils/tools');
|
|
10
11
|
|
|
11
|
-
const { skipPull } = tools.getArgs();
|
|
12
|
+
const { skipPull, skipInstall } = tools.getArgs();
|
|
13
|
+
|
|
14
|
+
|
|
12
15
|
|
|
13
16
|
module.exports.sync = () => {
|
|
14
17
|
return Promise.resolve()
|
|
@@ -62,6 +65,11 @@ module.exports.sync = () => {
|
|
|
62
65
|
.then(() => {
|
|
63
66
|
return initUtils.global.processResolutionsForNodeVersion();
|
|
64
67
|
})
|
|
68
|
+
.then(() => {
|
|
69
|
+
if (!skipInstall) {
|
|
70
|
+
return installUtils.localDev.install();
|
|
71
|
+
}
|
|
72
|
+
})
|
|
65
73
|
.catch((e) => {
|
|
66
74
|
throw e;
|
|
67
75
|
})
|