@eui/tools 6.3.9 → 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,21 @@
|
|
|
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
|
+
* * *
|
|
10
|
+
## 6.3.10 (2023-02-01)
|
|
11
|
+
|
|
12
|
+
##### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* package history fetch when parent package - EUI-7035 [EUI-7035](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7035) ([cf8ca758](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/cf8ca7585c47f99e4e4168a754140b2fd2c15b97))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.3.9 (2023-02-01)
|
|
2
20
|
|
|
3
21
|
##### Chores
|
package/package.json
CHANGED
package/sandbox.js
CHANGED
|
@@ -1064,9 +1064,10 @@ Promise.resolve()
|
|
|
1064
1064
|
|
|
1065
1065
|
// return installUtils.projects.getLocalProjectFixedDeps(prj);
|
|
1066
1066
|
|
|
1067
|
-
const pkg = configUtils.packages.
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
console.log(
|
|
1067
|
+
const pkg = configUtils.packages.getPackageByNpmPkg('@ecs/global', true);
|
|
1068
|
+
if (pkg.child) {
|
|
1069
|
+
pkgName = pkg.parentPkg;
|
|
1070
|
+
console.log(pkgName);
|
|
1071
1071
|
}
|
|
1072
|
+
console.log(pkg);
|
|
1072
1073
|
})
|
|
@@ -164,6 +164,13 @@ const getDiffBetweenBuildVersions = (pkg, fromBuildMetadata, toBuildMetadata) =>
|
|
|
164
164
|
return i.name;
|
|
165
165
|
})[0];
|
|
166
166
|
|
|
167
|
+
if (pkgName === undefined || !pkgName) {
|
|
168
|
+
const childPkg = configUtils.packages.getPackageByNpmPkg(item.package, true);
|
|
169
|
+
if (childPkg.child) {
|
|
170
|
+
pkgName = pkg.parentPkg;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
167
174
|
tools.logInfo('checking package : ' + pkgName);
|
|
168
175
|
|
|
169
176
|
// getting package file metadata
|
|
@@ -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];
|