@eui/tools 6.21.2 → 6.21.4

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.21.2
1
+ 6.21.4
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 6.21.4 (2024-10-17)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * adjusted resolutions for v18 - EUI-9014 [EUI-9014](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-9014) ([b6de0688](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/b6de0688194141dfe6cad5a6badfa382cbf453ff))
7
+
8
+ * * *
9
+ * * *
10
+ ## 6.21.3 (2024-10-11)
11
+
12
+ ##### Bug Fixes
13
+
14
+ * **deps:**
15
+ * composite core taken from last ACC for TRN when no preprod env is set for SEDIA and non-MWP hosts - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([55f0ce7b](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/55f0ce7b6b927d9ae340ea1f32f0f7053e8f8117))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 6.21.2 (2024-10-07)
2
20
 
3
21
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.21.2",
3
+ "version": "6.21.4",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -7,5 +7,8 @@
7
7
  "word-wrap": ">=1.2.4",
8
8
  "postcss": ">=8.4.31",
9
9
  "express": ">=4.19.2",
10
- "semver": ">=7.5.2"
10
+ "semver": ">=7.5.2",
11
+ "body-parser": ">=1.20.3",
12
+ "path-to-regexp": ">=0.1.10",
13
+ "rollup": ">=4.22.4"
11
14
  }
@@ -228,12 +228,21 @@ module.exports.getCompositeDeps = (
228
228
  * overridden by : hotfixDependencies if any
229
229
  */
230
230
  if (envTarget === 'TRN') {
231
- return getCompositeDepsByEnv(
232
- compositePath,
233
- envTarget,
234
- envsMetadata,
235
- 'PROD', 'TRN'
236
- );
231
+ if (hasPreprod) {
232
+ return getCompositeDepsByEnv(
233
+ compositePath,
234
+ envTarget,
235
+ envsMetadata,
236
+ 'PROD', 'TRN'
237
+ );
238
+ } else {
239
+ return getCompositeDepsByEnv(
240
+ compositePath,
241
+ envTarget,
242
+ envsMetadata,
243
+ 'ACC', 'TRN'
244
+ );
245
+ }
237
246
  }
238
247
 
239
248
  /**