@eui/tools 6.16.12 → 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.
@@ -1 +1 @@
1
- 6.16.12
1
+ 6.16.13
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
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
+ * * *
1
10
  ## 6.16.12 (2024-04-15)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.16.12",
3
+ "version": "6.16.13",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -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' || euiVersion === '18.x') {
256
- if (project.build.esbuild) {
257
- projectDef = JSON.stringify(angularProjectDefV17esbuild);
258
- tools.logInfo(`----using angularProjectDefV17esbuild`);
259
- } else {
260
- projectDef = JSON.stringify(angularProjectDefV17);
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);