@eui/tools 6.11.16 → 6.11.18
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 +20 -4
- package/scripts/csdr/init/remotes.js +4 -1
- package/scripts/csdr/init/resources/14.x/browserslistrc +1 -1
- package/scripts/csdr/init/resources/14.x/yarn.lock +825 -214
- package/scripts/csdr/init/resources/14.x/yarn.lock.temp +14382 -0
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.11.
|
|
1
|
+
6.11.18
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.11.18 (2023-05-05)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* fetched locked dependencies on virtual remotes - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([1ec4baa5](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/1ec4baa518f11a3b93d39f2df047b44c6862f16d))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.11.17 (2023-04-28)
|
|
11
|
+
|
|
12
|
+
##### Chores
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* update browserlist for v14 and yarn.lock - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([547f300c](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/547f300c2245c5951a16fd4e6ec87949f26fcbd0))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.11.16 (2023-04-26)
|
|
2
20
|
|
|
3
21
|
##### Chores
|
package/package.json
CHANGED
package/sandbox.js
CHANGED
|
@@ -1222,13 +1222,29 @@ const versionUtils = require('./scripts/csdr/version/version-utils');
|
|
|
1222
1222
|
// console.log(e);
|
|
1223
1223
|
// })
|
|
1224
1224
|
|
|
1225
|
+
// Promise.resolve()
|
|
1226
|
+
// .then(() => {
|
|
1227
|
+
// const pkgName = 'mapar-administration-eui15-remote-el-ui';
|
|
1228
|
+
// const remote = configUtils.remotes.getRemote(pkgName);
|
|
1229
|
+
|
|
1230
|
+
// console.log(remote);
|
|
1231
|
+
// })
|
|
1232
|
+
// .catch((e) => {
|
|
1233
|
+
// console.log(e);
|
|
1234
|
+
// })
|
|
1235
|
+
|
|
1236
|
+
const fromVersion = '4.0.0-ACC.0';
|
|
1237
|
+
const toVersion = '4.0.0-ACC.1';
|
|
1238
|
+
const pkg = configUtils.remotes.getRemote('cc-pmm-participants-eui15-remote-el-ui');
|
|
1239
|
+
|
|
1225
1240
|
Promise.resolve()
|
|
1226
1241
|
.then(() => {
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
console.log(
|
|
1242
|
+
return metadataUtils.packageHistory.generateDiffReport(pkg, 'ACC', fromVersion, toVersion);
|
|
1243
|
+
})
|
|
1244
|
+
.then((diffMetadata) => {
|
|
1245
|
+
console.log(diffMetadata);
|
|
1231
1246
|
})
|
|
1232
1247
|
.catch((e) => {
|
|
1233
1248
|
console.log(e);
|
|
1249
|
+
process.exit(1);
|
|
1234
1250
|
})
|
|
@@ -110,7 +110,10 @@ module.exports.generateVirtualRemote = (remoteName, cloneRemote = true) => {
|
|
|
110
110
|
|
|
111
111
|
envs.forEach((env) => {
|
|
112
112
|
if (remote.dependencies[env]) {
|
|
113
|
-
|
|
113
|
+
const lockedDeps = {
|
|
114
|
+
lockedDependencies: remote.dependencies[env]
|
|
115
|
+
};
|
|
116
|
+
tools.writeJsonFileSync(path.join(remotePath, `dependencies-composite-${env}.json`), lockedDeps);
|
|
114
117
|
}
|
|
115
118
|
});
|
|
116
119
|
|