@eui/tools 6.16.11 → 6.16.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.16.11
1
+ 6.16.12
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.16.12 (2024-04-15)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * Enable BFF for localhost development [CCARCHITEC-1641](https://webgate.ec.europa.eu/CITnet/jira/browse/CCARCHITEC-1641) ([9dd87ee8](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/9dd87ee88d954450c6a0950728f0a098baa2627c))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.16.11 (2024-04-12)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.16.11",
3
+ "version": "6.16.12",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -351,6 +351,10 @@ module.exports.registerAngularProjectDef = (project, build = false, element = fa
351
351
 
352
352
  // writing serve configuration entry
353
353
  const serveConf = { browserTarget: project.name + ':build:' + confKey };
354
+ // add proxy configuration
355
+ if (confKey.startsWith('cdn-') && confKey.endsWith('-local')) {
356
+ serveConf ['proxyConfig'] = 'hosts/' + project.name + '/proxy-' + confKey + '-openid.conf.js';
357
+ }
354
358
  jsonFile['projects'][project.name].architect.serve.configurations[confKey] = serveConf;
355
359
  })
356
360
  }