@eui/tools 6.12.55 → 6.12.56

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.12.55
1
+ 6.12.56
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.12.56 (2023-09-16)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * localdev installation fetching rc package deps - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([a4fb9761](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/a4fb9761f4a43b74d675001f0201a81d50d8179b))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.12.55 (2023-09-15)
2
11
 
3
12
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.12.55",
3
+ "version": "6.12.56",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -114,7 +114,7 @@ module.exports.install = (providedDeps) => {
114
114
 
115
115
  const configDeps = { ...resolvedDeps, ...fixedDeps };
116
116
 
117
- return innerCommon.getResolvedCarretDeps(configDeps, false);
117
+ return innerCommon.getResolvedCarretDeps(configDeps, false, true);
118
118
  })
119
119
 
120
120
 
@@ -173,7 +173,7 @@ module.exports.getLocalPackagesCompositeDepsRemapped = () => {
173
173
  .then(() => {
174
174
  const compositeDeps = getLocalPackagesCompositeDeps();
175
175
 
176
- return innerCommon.getResolvedCarretDeps(compositeDeps, false);
176
+ return innerCommon.getResolvedCarretDeps(compositeDeps, false, true);
177
177
  })
178
178
 
179
179
  .then((remappedDeps) => {
@@ -241,7 +241,7 @@ module.exports.installDeps = (prj, pkg, isMaster) => {
241
241
  })
242
242
 
243
243
  .then(() => {
244
- return innerCommon.getResolvedCarretDeps(localPkgCompositeDeps, isMaster);
244
+ return innerCommon.getResolvedCarretDeps(localPkgCompositeDeps, isMaster, !isMaster);
245
245
  })
246
246
 
247
247
  .then((remappedDepsIn) => {