@eui/tools 6.3.10 → 6.3.11
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
|
-
6.3.
|
|
1
|
+
6.3.11
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.3.11 (2023-02-01)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* angular build args not overriden - EUI-7035 [EUI-7035](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7035) ([719b4610](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/719b4610615b86486f252d65b6815d9b52656f4c))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.3.10 (2023-02-01)
|
|
2
11
|
|
|
3
12
|
##### Bug Fixes
|
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@ module.exports.build = (pkg, isMaster) => {
|
|
|
16
16
|
const ng = path.resolve(process.cwd(), 'node_modules', '@angular', 'cli', 'bin', 'ng');
|
|
17
17
|
|
|
18
18
|
// FETCH ARGS
|
|
19
|
-
let { deps, skipClean, skipLint, skipTest, skipCompile, skipDoc } = pkg.build? pkg.build : tools.getArgs();
|
|
19
|
+
let { deps, skipClean, skipLint, skipTest, skipCompile, skipDoc } = pkg.build? {...pkg.build, ...tools.getArgs()} : tools.getArgs();
|
|
20
20
|
|
|
21
21
|
return Promise.resolve()
|
|
22
22
|
.then(() => {
|
|
@@ -56,6 +56,7 @@ module.exports.build = (pkg, isMaster) => {
|
|
|
56
56
|
if (!skipLint) {
|
|
57
57
|
tools.logSuccess();
|
|
58
58
|
}
|
|
59
|
+
|
|
59
60
|
if (!skipTest) {
|
|
60
61
|
tools.logInfo('Testing...');
|
|
61
62
|
let args = ['--max_old_space_size=8096', ng, 'test', pkg.name];
|