@eui/tools 5.3.35 → 5.3.38
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
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.3.
|
|
1
|
+
5.3.38
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
|
1
|
+
## 5.3.38 (2022-07-29)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* 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))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 5.3.37 (2022-07-14)
|
|
11
|
+
|
|
12
|
+
##### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* 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))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
19
|
+
## 5.3.36 (2022-07-14)
|
|
20
|
+
|
|
21
|
+
##### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* **other:**
|
|
24
|
+
* wrong tslint call on package build - EUI-4106 [EUI-4106](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4106) ([c2651cb0](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/c2651cb0f6262e2c38e3b46e0c66787cbc8e7d92))
|
|
25
|
+
|
|
26
|
+
* * *
|
|
27
|
+
* * *
|
|
1
28
|
## 5.3.35 (2022-07-14)
|
|
2
29
|
|
|
3
30
|
##### Chores
|
package/package.json
CHANGED
package/sandbox.js
CHANGED
|
@@ -877,6 +877,6 @@ const versionUtils = require('./scripts/csdr/version/version-utils');
|
|
|
877
877
|
|
|
878
878
|
Promise.resolve()
|
|
879
879
|
.then(() => {
|
|
880
|
-
const
|
|
881
|
-
console.log(
|
|
880
|
+
const pkg = configUtils.packages.getPackage('eui', true);
|
|
881
|
+
console.log(pkg);
|
|
882
882
|
})
|
|
@@ -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
|
|
|
@@ -51,8 +51,8 @@ module.exports.build = (pkg, isMaster) => {
|
|
|
51
51
|
if (tools.isFileExists(tsLintPath)) {
|
|
52
52
|
// TODO: remove TSLint since it's deprecated and should not be used by projects in the future
|
|
53
53
|
tools.logWarning('TSLint is deprecated and will be removed in the future. Consider migrating to ESLint')
|
|
54
|
-
const script = `
|
|
55
|
-
tools.logInfo(script);
|
|
54
|
+
const script = `tslint -c ${tsLintPath} -p ${pkg.paths.tsConfig} -t verbose`
|
|
55
|
+
tools.logInfo(`running ${script}`);
|
|
56
56
|
return tools.runScript(script);
|
|
57
57
|
} else if(tools.isFileExists(esLintPath)) {
|
|
58
58
|
// the project path information are located inside the .eslintrc.json
|