@eui/tools 6.2.0 → 6.2.2
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/init.js +1 -1
- package/scripts/csdr/install/projects.js +8 -0
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.2.
|
|
1
|
+
6.2.2
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.2.2 (2022-11-09)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* wrong default declaration for init script - EUI-6448 [EUI-6448](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6448) ([c15d2a6e](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/c15d2a6eb338fc205fa5f8bec4440107bf47d4fc))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.2.1 (2022-11-09)
|
|
11
|
+
|
|
12
|
+
##### Chores
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* patch project fetch base deps - EUI-6448 [EUI-6448](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6448) ([578739c3](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/578739c338a2b5521fb924cbdd0b4d25e9cbc4e3))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.2.0 (2022-11-09)
|
|
2
20
|
|
|
3
21
|
##### New Features
|
package/package.json
CHANGED
|
@@ -24,7 +24,7 @@ module.exports.init = () => {
|
|
|
24
24
|
configOnly: configOnly || false,
|
|
25
25
|
skipClone: skipClone || false,
|
|
26
26
|
reset: reset || false,
|
|
27
|
-
pkgOnly: pkgOnly ||
|
|
27
|
+
pkgOnly: pkgOnly || false,
|
|
28
28
|
prjOnly: prjOnly || false,
|
|
29
29
|
remoteOnly: remoteOnly || true,
|
|
30
30
|
build: build || false,
|
|
@@ -154,7 +154,15 @@ module.exports.installDeps = (prj, envTarget, compositeType) => {
|
|
|
154
154
|
|
|
155
155
|
// fetching extra dependencies on project
|
|
156
156
|
const prjBaseJsonFile = path.join(process.cwd(), prj.folder, 'dependencies-base.json');
|
|
157
|
+
|
|
158
|
+
tools.logInfo(`Getting base dependencies from : ${prjBaseJsonFile}`);
|
|
159
|
+
console.log(tools.getJsonFileContent(prjBaseJsonFile));
|
|
160
|
+
|
|
157
161
|
const prjBaseDeps = tools.getJsonFileContent(prjBaseJsonFile) || {};
|
|
162
|
+
|
|
163
|
+
tools.logInfo('Found base dependencies:');
|
|
164
|
+
console.log(prjBaseDeps);
|
|
165
|
+
|
|
158
166
|
const fixedDeps = configUtils.global.getConfig().npm.fixedDependencies;
|
|
159
167
|
|
|
160
168
|
return innerCommon.installDeps({ ...prjBaseDeps, ...compositeDeps, ...prjFixedDeps, ...fixedDeps });
|