@eui/tools 6.21.69 → 6.21.71

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.69
1
+ 6.21.71
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 6.21.71 (2025-05-08)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * added sdlc option to pull gitlab corp repositories for MWP locally - EUI-10199 [EUI-10199](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-10199) ([ac5882d1](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/ac5882d1b1643600889bfff84c93d0ccd63c97da))
7
+
8
+ * * *
9
+ * * *
10
+ ## 6.21.70 (2025-05-06)
11
+
12
+ ##### Chores
13
+
14
+ * **other:**
15
+ * missing svg sprites from the testing phase - EUI-10831 [EUI-10831](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-10831) ([1b4578e2](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/1b4578e21faf32f07e8eb208cf832adbb315d4a9))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 6.21.69 (2025-05-05)
2
20
 
3
21
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.21.69",
3
+ "version": "6.21.71",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -2045,6 +2045,13 @@ module.exports.angularPackageDefV15 = {
2045
2045
  "scripts": [
2046
2046
  "node_modules/quill/dist/quill.js",
2047
2047
  "node_modules/quill-better-table/dist/quill-better-table.min.js"
2048
+ ],
2049
+ "assets": [
2050
+ {
2051
+ "glob": "**/*",
2052
+ "input": "packages/eui/packages/styles/src/assets/",
2053
+ "output": "./assets"
2054
+ }
2048
2055
  ]
2049
2056
  }
2050
2057
  }
@@ -258,6 +258,9 @@ const getGitHost = (externalRepo) => {
258
258
  return config.git.local;
259
259
  }
260
260
 
261
+ } else if (git && git === 'sdlc') {
262
+ return config.git.sdlc;
263
+
261
264
  } else {
262
265
  if (externalRepo) {
263
266
  return config.git.externals.remote;