@eui/tools 6.14.15 → 6.14.16
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 +9 -0
- package/package.json +1 -1
- package/sandbox.js +7 -7
- package/scripts/csdr/config/packages.js +5 -1
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.14.
|
|
1
|
+
6.14.16
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.14.16 (2023-12-10)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* wrong fetch of old-remote flag - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([c911d2d4](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/c911d2d4e37153661ea907da894cd23dab1c6641))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.14.15 (2023-12-10)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
package/sandbox.js
CHANGED
|
@@ -1477,7 +1477,7 @@ const publishUtils = require('./scripts/utils/publish/publish-utils');
|
|
|
1477
1477
|
// });
|
|
1478
1478
|
// })
|
|
1479
1479
|
|
|
1480
|
-
// test commit history gathering
|
|
1480
|
+
// TODO test commit history gathering when hotfix is compared as old
|
|
1481
1481
|
|
|
1482
1482
|
// "name": "eac-pmm-lib-ui",
|
|
1483
1483
|
// "old": "3.17.2-3",
|
|
@@ -1495,9 +1495,9 @@ const publishUtils = require('./scripts/utils/publish/publish-utils');
|
|
|
1495
1495
|
// "old": "3.27.3-2",
|
|
1496
1496
|
// "new": "3.28.0",
|
|
1497
1497
|
|
|
1498
|
-
Promise.resolve()
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1498
|
+
// Promise.resolve()
|
|
1499
|
+
// .then(() => {
|
|
1500
|
+
// // const test = configUtils.packages.isRemote('sedia-mop-eui10-remote-el-ui');
|
|
1501
|
+
// // const test = configUtils.packages.isRemote('sedia-mop-ui');
|
|
1502
|
+
// // console.log(test);
|
|
1503
|
+
// })
|
|
@@ -247,7 +247,11 @@ module.exports.isRemote = (pkgName) => {
|
|
|
247
247
|
const packagesConfig = require(path.join(process.cwd(), '.csdr', '.euirc-csdr-packages.json'));
|
|
248
248
|
const packageConfig = packagesConfig[pkgName];
|
|
249
249
|
|
|
250
|
-
|
|
250
|
+
if (packageConfig) {
|
|
251
|
+
return packageConfig.remote || false;
|
|
252
|
+
} else {
|
|
253
|
+
return false;
|
|
254
|
+
}
|
|
251
255
|
}
|
|
252
256
|
|
|
253
257
|
module.exports.getBuildablePackagesWithDeps = () => {
|