@eui/tools 6.21.72 → 6.21.74
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.21.
|
|
1
|
+
6.21.74
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.21.74 (2025-05-13)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* enable workspace migration for routes for v19 PPD of MWP - EUI-10199 [EUI-10199](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-10199) ([b8717215](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/b871721591dd84776d3f0c4ab040f9bf3513e2c9))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.21.73 (2025-05-09)
|
|
11
|
+
|
|
12
|
+
##### Chores
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* prevent dependencies scanning when skipDependencies is set for package - EUI-10199 [EUI-10199](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-10199) ([701f2beb](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/701f2beb3c34448ee11f5a3f717a48053fb6577b))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.21.72 (2025-05-08)
|
|
2
20
|
|
|
3
21
|
##### Chores
|
package/package.json
CHANGED
|
@@ -37,9 +37,11 @@ const getLocalPackageDeps = (pkg) => {
|
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
const getLocalPackagesDeps = module.exports.getLocalPackagesDeps = () => {
|
|
40
|
-
|
|
40
|
+
let packages = configUtils.packages.getPackages();
|
|
41
41
|
let deps = {};
|
|
42
42
|
|
|
43
|
+
packages = packages.filter(p => !p.skipDependencies);
|
|
44
|
+
|
|
43
45
|
packages.forEach(p => {
|
|
44
46
|
const pkgDeps = getLocalPackageDeps(p);
|
|
45
47
|
|
|
@@ -103,10 +105,12 @@ const getLocalPackagesCompositeDeps = module.exports.getLocalPackagesCompositeDe
|
|
|
103
105
|
let deps = {};
|
|
104
106
|
|
|
105
107
|
// getting locally mounted packages, don't take into account remotely installed packages (elements remote)
|
|
106
|
-
|
|
108
|
+
let packages = configUtils.packages.getPackages().filter((p) => {
|
|
107
109
|
return !p.paths.remoteNodeModules;
|
|
108
110
|
});
|
|
109
111
|
|
|
112
|
+
packages = packages.filter(p => !p.skipDependencies);
|
|
113
|
+
|
|
110
114
|
packages.forEach(p => {
|
|
111
115
|
tools.logInfo(`Parsing package : ${p.name}`);
|
|
112
116
|
|
|
@@ -750,7 +750,7 @@ const generateLinks = (project, routes, envTargetFinal) => {
|
|
|
750
750
|
envTargetFinal === 'acc' ||
|
|
751
751
|
envTargetFinal === 'dlt' ||
|
|
752
752
|
// envTargetFinal === 'trn' ||
|
|
753
|
-
|
|
753
|
+
envTargetFinal === 'ppd' ||
|
|
754
754
|
// envTargetFinal === 'prod' ||
|
|
755
755
|
envTargetFinal.indexOf('local') > -1
|
|
756
756
|
) {
|