@eui/tools 6.2.0 → 6.2.1

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.
@@ -1 +1 @@
1
- 6.2.0
1
+ 6.2.1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.2.1 (2022-11-09)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * 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))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.2.0 (2022-11-09)
2
11
 
3
12
  ##### New Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.2.0",
3
+ "version": "6.2.1",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -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 });