@eui/tools 6.15.11 → 6.15.12

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.15.11
1
+ 6.15.12
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.15.12 (2024-02-02)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * baseHref in angular json for sedia-host-playground [MWP-10529](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-10529) ([1adb6548](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/1adb6548a21c7174ee81a2ccea099131082b091c))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.15.11 (2024-01-23)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.15.11",
3
+ "version": "6.15.12",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -302,6 +302,11 @@ module.exports.registerAngularProjectDef = (project, build = false, element = fa
302
302
  jsonFile['projects'][project.name].architect.build.options.scripts = angularConfigFile.build.scripts;
303
303
  }
304
304
 
305
+ tools.logInfo('Processing base href injection...');
306
+ if (angularConfigFile.build.baseHref) {
307
+ jsonFile['projects'][project.name].architect.build.options.baseHref = angularConfigFile.build.baseHref;
308
+ }
309
+
305
310
  // replacing custom configurations if provided
306
311
  if (angularConfigFile.configurations && angularConfigFile.configurations.length > 0) {
307
312
  tools.logInfo('Processing configurations injection');