@eui/tools 6.21.118 → 6.21.119

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.118
1
+ 6.21.119
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.21.119 (2025-09-08)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * host pkg clone if sdlc - MWP-11955 [MWP-11955](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-11955) ([a2a42202](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/a2a4220227d8a69dccede051d3456f7ffdf70e81))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.21.118 (2025-09-05)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.21.118",
3
+ "version": "6.21.119",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -86,7 +86,7 @@ module.exports.cloneHostPackage = (prj) => {
86
86
  throw new Error('Invalid host package provided / unknown to CSDR config');
87
87
  }
88
88
  if (configUtils.global.isCsdr()) {
89
- return gitUtils.cloneAndCheckout(pkg.repository, path.join(process.cwd(), 'packages', pkg.name), 'master', false, false, true);
89
+ return gitUtils.cloneAndCheckout(pkg.repository, path.join(process.cwd(), 'packages', pkg.name), 'master', false, false, pkg.sdlc);
90
90
  } else {
91
91
  return gitUtils.cloneRepoStandalone(pkg.name, path.join(process.cwd(), 'packages', pkg.name));
92
92
  }