@eui/tools 5.3.22 → 5.3.23

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
- 5.3.22
1
+ 5.3.23
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 5.3.23 (2022-06-21)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * force optimized build for MWP host on all environment option - MWP-7700 [MWP-7700](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-7700) ([c7f092c2](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/c7f092c2abf242932f456f35ebc0d8ee1529d3bb))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 5.3.22 (2022-06-21)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "5.3.22",
3
+ "version": "5.3.23",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -165,6 +165,10 @@ module.exports.angular = (envTarget, isSnapshot, version, configEnvTargetIn) =>
165
165
  isOptimizedBuild = true;
166
166
  }
167
167
 
168
+ if (currentProject.build.fullOptimizedBuild) {
169
+ isOptimizedBuild = true;
170
+ }
171
+
168
172
  if (!envTarget && isSnapshot && currentProject.build && currentProject.build.snapshotBuildOptimized) {
169
173
  isOptimizedBuild = true;
170
174
  }