@eui/tools 6.16.11 → 6.16.13
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.
- package/.version.properties +1 -1
- package/CHANGELOG.md +18 -0
- package/package.json +1 -1
- package/scripts/csdr/config/angular.js +10 -8
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.16.
|
|
1
|
+
6.16.13
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.16.13 (2024-04-18)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* adapted v18 MWP host build to esbuild as default - MWP-10780 [MWP-10780](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-10780) ([f67334eb](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/f67334eb6104493e70d538cacf551e130f385daa))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.16.12 (2024-04-15)
|
|
11
|
+
|
|
12
|
+
##### Chores
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* 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))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.16.11 (2024-04-12)
|
|
2
20
|
|
|
3
21
|
##### Chores
|
package/package.json
CHANGED
|
@@ -252,14 +252,12 @@ module.exports.registerAngularProjectDef = (project, build = false, element = fa
|
|
|
252
252
|
} else if (euiVersion === '14.x' || euiVersion === '15.x' || euiVersion === '16.x') {
|
|
253
253
|
projectDef = JSON.stringify(angularProjectDefV14);
|
|
254
254
|
tools.logInfo(`----using angularProjectDefV14`);
|
|
255
|
-
} else if (euiVersion === '17.x'
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
tools.logInfo(`----using angularProjectDefV17`);
|
|
262
|
-
}
|
|
255
|
+
} else if (euiVersion === '17.x') {
|
|
256
|
+
projectDef = JSON.stringify(angularProjectDefV17);
|
|
257
|
+
tools.logInfo(`----using angularProjectDefV17`);
|
|
258
|
+
} else if (euiVersion === '18.x') {
|
|
259
|
+
projectDef = JSON.stringify(angularProjectDefV17esbuild);
|
|
260
|
+
tools.logInfo(`----using angularProjectDefV17esbuild`);
|
|
263
261
|
} else {
|
|
264
262
|
if (project.build && project.build.csdrFileReplacement === true) {
|
|
265
263
|
projectDef = JSON.stringify(angularProjectLightDef);
|
|
@@ -351,6 +349,10 @@ module.exports.registerAngularProjectDef = (project, build = false, element = fa
|
|
|
351
349
|
|
|
352
350
|
// writing serve configuration entry
|
|
353
351
|
const serveConf = { browserTarget: project.name + ':build:' + confKey };
|
|
352
|
+
// add proxy configuration
|
|
353
|
+
if (confKey.startsWith('cdn-') && confKey.endsWith('-local')) {
|
|
354
|
+
serveConf ['proxyConfig'] = 'hosts/' + project.name + '/proxy-' + confKey + '-openid.conf.js';
|
|
355
|
+
}
|
|
354
356
|
jsonFile['projects'][project.name].architect.serve.configurations[confKey] = serveConf;
|
|
355
357
|
})
|
|
356
358
|
}
|