@eui/tools 6.3.13 → 6.3.15
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 +1 -1
- package/CHANGELOG.md +18 -0
- package/package.json +1 -1
- package/sandbox.js +48 -6
- package/scripts/csdr/init/remotes/15.x/base/angular.json +1 -1
- package/scripts/csdr/init/remotes/15.x/base/package.json_TO_REPLACE +0 -4
- package/scripts/csdr/init/{resources/15.x/yarn.lock.temp → remotes/15.x/base/yarn.lock} +3690 -4924
- package/scripts/csdr/init/remotes/15.x/full/src/app/module.ts +94 -0
- package/scripts/csdr/init/remotes/15.x/full/src/app/routing.module.ts +34 -0
- package/scripts/csdr/init/remotes/15.x/full/src/config/global.ts +55 -0
- package/scripts/csdr/init/remotes.js +12 -1
- package/scripts/csdr/metadata/package-history.js +1 -1
- package/scripts/csdr/init/remotes/15.x/full/src/app/dummy.scss +0 -3
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.3.
|
|
1
|
+
6.3.15
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.3.15 (2023-02-02)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* full virtual remote integration - MWP-9204 [MWP-9204](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-9204) ([d03cd60e](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/d03cd60e51c004f1cd425879f89e8cce271a712f))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.3.14 (2023-02-02)
|
|
11
|
+
|
|
12
|
+
##### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* parent package fetch flatDiffMetadata issue - EUI-7035 [EUI-7035](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7035) ([a6524ebf](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/a6524ebf89f76740289539059d8f3ac5ac251551))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.3.13 (2023-02-02)
|
|
2
20
|
|
|
3
21
|
##### Bug Fixes
|
package/package.json
CHANGED
package/sandbox.js
CHANGED
|
@@ -1064,10 +1064,52 @@ Promise.resolve()
|
|
|
1064
1064
|
|
|
1065
1065
|
// return installUtils.projects.getLocalProjectFixedDeps(prj);
|
|
1066
1066
|
|
|
1067
|
-
const pkg = configUtils.packages.getPackageByNpmPkg('@ecs/global', true);
|
|
1068
|
-
if (pkg.child) {
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
}
|
|
1072
|
-
console.log(pkg);
|
|
1067
|
+
// const pkg = configUtils.packages.getPackageByNpmPkg('@ecs/global', true);
|
|
1068
|
+
// if (pkg.child) {
|
|
1069
|
+
// pkgName = pkg.parentPkg;
|
|
1070
|
+
// console.log(pkgName);
|
|
1071
|
+
// }
|
|
1072
|
+
// console.log(pkg);
|
|
1073
|
+
|
|
1074
|
+
const f = {
|
|
1075
|
+
name: 'sedia-ecs-eui10-remote-el-ui',
|
|
1076
|
+
version: '1.1.0',
|
|
1077
|
+
date: '20230111-11:43',
|
|
1078
|
+
npmPkg: '@sedia/ecs-eui10-remote-el',
|
|
1079
|
+
duration: 463832,
|
|
1080
|
+
envTarget: 'TST',
|
|
1081
|
+
dependencies: {
|
|
1082
|
+
'@eui/deps-base': '10.6.14',
|
|
1083
|
+
'@csdr/core': '2.3.13',
|
|
1084
|
+
'@csdr/integration': '2.0.46',
|
|
1085
|
+
'@ecs/global': '4.0.3',
|
|
1086
|
+
'@ecs/person-data': '4.0.3'
|
|
1087
|
+
}
|
|
1088
|
+
};
|
|
1089
|
+
const t = {
|
|
1090
|
+
name: 'sedia-ecs-eui10-remote-el-ui',
|
|
1091
|
+
version: '1.5.0',
|
|
1092
|
+
date: '20230202-09:41',
|
|
1093
|
+
npmPkg: '@sedia/ecs-eui10-remote-el',
|
|
1094
|
+
duration: 356556,
|
|
1095
|
+
envTarget: 'TST',
|
|
1096
|
+
dependencies: {
|
|
1097
|
+
'@eui/deps-base': '10.6.16',
|
|
1098
|
+
'@csdr/core': '2.3.13',
|
|
1099
|
+
'@csdr/integration': '2.0.46',
|
|
1100
|
+
'@ecs/global': '4.0.4',
|
|
1101
|
+
'@ecs/person-data': '4.0.4'
|
|
1102
|
+
}
|
|
1103
|
+
};
|
|
1104
|
+
return metadataUtils.packageHistory.getDiffBetweenBuildVersions(null, f, t);
|
|
1105
|
+
})
|
|
1106
|
+
|
|
1107
|
+
.then((diffMetadata) => {
|
|
1108
|
+
console.log(diffMetadata);
|
|
1109
|
+
|
|
1110
|
+
return metadataUtils.packageHistory.flattenDiffMetadata(diffMetadata);
|
|
1111
|
+
})
|
|
1112
|
+
|
|
1113
|
+
.then((flatDiffMetadata) => {
|
|
1114
|
+
console.log(flatDiffMetadata);
|
|
1073
1115
|
})
|