@eui/tools 5.3.36 → 5.3.39

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.36
1
+ 5.3.39
package/CHANGELOG.md CHANGED
@@ -1,3 +1,30 @@
1
+ ## 5.3.39 (2022-08-08)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **resolutions:**
6
+ * resolutions.json for v10 on npm package glob - EUI-6319 [EUI-6319](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6319) ([d8491bee](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/d8491beeb4d782d2688437f4ccaa3d0f1d2a310f))
7
+
8
+ * * *
9
+ * * *
10
+ ## 5.3.38 (2022-07-29)
11
+
12
+ ##### Chores
13
+
14
+ * **other:**
15
+ * Re-enable optimized build for ACC/DLT. [MWP-8594](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-8594) ([b33326aa](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/b33326aac09878be2eae1a521d2ee9f25714a855))
16
+
17
+ * * *
18
+ * * *
19
+ ## 5.3.37 (2022-07-14)
20
+
21
+ ##### Bug Fixes
22
+
23
+ * **other:**
24
+ * fullOptimizedBuild check when outside of CSDR builds - EUI-6237 [EUI-6237](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6237) ([8841bf4d](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/8841bf4d03d008320f710e3e1e47ed9430c44ab3))
25
+
26
+ * * *
27
+ * * *
1
28
  ## 5.3.36 (2022-07-14)
2
29
 
3
30
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "5.3.36",
3
+ "version": "5.3.39",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -4,5 +4,6 @@
4
4
  "@types/node": "14.14.10",
5
5
  "mem": ">=4.3.0 <=8.1.1",
6
6
  "lru-cache": "5.1.1",
7
- "update-notifier": "4.1.3"
7
+ "update-notifier": "4.1.3",
8
+ "glob": ">=7.0.0 <8.0.0"
8
9
  }
@@ -175,11 +175,11 @@ module.exports.angular = (envTarget, isSnapshot, version, configEnvTargetIn) =>
175
175
  } else {
176
176
 
177
177
  let isOptimizedBuild = false;
178
- if (envTarget && (envTarget === 'TRN' || envTarget === 'PROD')) {
178
+ if (envTarget && (envTarget === 'ACC' || envTarget === 'DLT' || envTarget === 'TRN' || envTarget === 'PROD')) {
179
179
  isOptimizedBuild = true;
180
180
  }
181
181
 
182
- if (currentProject.build.fullOptimizedBuild) {
182
+ if (currentProject.build && currentProject.build.fullOptimizedBuild) {
183
183
  isOptimizedBuild = true;
184
184
  }
185
185