@eui/tools 5.3.37 → 5.3.40

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.37
1
+ 5.3.40
package/CHANGELOG.md CHANGED
@@ -1,3 +1,30 @@
1
+ ## 5.3.40 (2022-08-08)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **resolutions:**
6
+ * resolutions.json for v10 on npm package nopt - EUI-6319 [EUI-6319](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6319) ([f9abfa0d](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/f9abfa0d37a217bf4ab93c2ae496039abcc5004b))
7
+
8
+ * * *
9
+ * * *
10
+ ## 5.3.39 (2022-08-08)
11
+
12
+ ##### Bug Fixes
13
+
14
+ * **resolutions:**
15
+ * 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))
16
+
17
+ * * *
18
+ * * *
19
+ ## 5.3.38 (2022-07-29)
20
+
21
+ ##### Chores
22
+
23
+ * **other:**
24
+ * 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))
25
+
26
+ * * *
27
+ * * *
1
28
  ## 5.3.37 (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.37",
3
+ "version": "5.3.40",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -4,5 +4,7 @@
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",
9
+ "nopt": ">=5.0.0 <6.0.0"
8
10
  }
@@ -175,7 +175,7 @@ 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