@eui/tools 5.0.0-rc.20 → 5.0.0-rc.21

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
- 5.0.0-rc.20
1
+ 5.0.0-rc.21
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 5.0.0-rc.21 (2022-04-01)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * envTarget composite for TST forced to master for remapped deps without snapshots - EUI-5632 [EUI-5632](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-5632) ([2c38dd12](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/2c38dd1256c0a7092e78aaeb9cbc6e4b71e1b783))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 5.0.0-rc.20 (2022-04-01)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "5.0.0-rc.20",
3
+ "version": "5.0.0-rc.21",
4
4
  "tag": "next",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -155,7 +155,7 @@ const getResolvedCarretDeps = (deps, isMaster) => {
155
155
  acc[k] = lastMajorVersion;
156
156
 
157
157
  } else {
158
- tools.logWarning(`Can't resolve carret version from history for pkg: ${npmPkg} for version ${version}`);
158
+ tools.logWarning(`WARNING : Can't resolve carret version from history for pkg: ${npmPkg} for version ${version}`);
159
159
  }
160
160
  }
161
161
  return acc;
@@ -51,7 +51,7 @@ const getDeps_TST = (compositeDeps, prevSnapshotEnabled) => {
51
51
 
52
52
  // Re-mapping the dependencies found against their max "carret" versions found in the base dependencies defs in the project
53
53
  .then((metadataDeps) => {
54
- return innerCommon.getRemappedDeps(metadataDeps, compositeDeps);
54
+ return innerCommon.getRemappedDeps(metadataDeps, compositeDeps, true);
55
55
  })
56
56
 
57
57
  .catch((e) => {