@eui/tools 6.21.71 → 6.21.73
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.73
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.21.73 (2025-05-09)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* 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))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.21.72 (2025-05-08)
|
|
11
|
+
|
|
12
|
+
##### Chores
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* patch resolutions for v18 of pdfjs-dist - EUI-10199 [EUI-10199](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-10199) ([45d55874](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/45d55874d5510c77a261c6b6901783a91319bf78))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.21.71 (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
|
|