@coana-tech/cli 14.12.218 → 14.12.219
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/cli.mjs +6 -1
- package/package.json +1 -1
- package/reachability-analyzers-cli.mjs +5 -0
- package/repos/coana-tech/goana/bin/goana-darwin-amd64.gz +0 -0
- package/repos/coana-tech/goana/bin/goana-darwin-arm64.gz +0 -0
- package/repos/coana-tech/goana/bin/goana-linux-amd64.gz +0 -0
- package/repos/coana-tech/goana/bin/goana-linux-arm64.gz +0 -0
- package/repos/coana-tech/javap-service/javap-service.jar +0 -0
package/cli.mjs
CHANGED
|
@@ -205673,6 +205673,11 @@ async function getFilesRelative(dir, excludeDirs) {
|
|
|
205673
205673
|
if (!excludeDirs?.includes(item.name)) await helper(itemPath, arrayOfFiles);
|
|
205674
205674
|
} else if (item.isFile()) {
|
|
205675
205675
|
arrayOfFiles.push(itemPath);
|
|
205676
|
+
} else if (item.isSymbolicLink()) {
|
|
205677
|
+
try {
|
|
205678
|
+
if ((await stat(join3(dir, itemPath))).isFile()) arrayOfFiles.push(itemPath);
|
|
205679
|
+
} catch {
|
|
205680
|
+
}
|
|
205676
205681
|
}
|
|
205677
205682
|
}
|
|
205678
205683
|
return arrayOfFiles;
|
|
@@ -251831,7 +251836,7 @@ async function onlineScan(dependencyTree, apiKey, timeout) {
|
|
|
251831
251836
|
}
|
|
251832
251837
|
|
|
251833
251838
|
// dist/version.js
|
|
251834
|
-
var version3 = "14.12.
|
|
251839
|
+
var version3 = "14.12.219";
|
|
251835
251840
|
|
|
251836
251841
|
// dist/cli-core.js
|
|
251837
251842
|
var { mapValues, omit, partition, pickBy: pickBy2 } = import_lodash15.default;
|
package/package.json
CHANGED
|
@@ -81412,6 +81412,11 @@ async function getFiles(dir, excludeDirs) {
|
|
|
81412
81412
|
if (!excludeDirs?.includes(item.name)) await helper(itemPath, arrayOfFiles);
|
|
81413
81413
|
} else if (item.isFile()) {
|
|
81414
81414
|
arrayOfFiles.push(itemPath);
|
|
81415
|
+
} else if (item.isSymbolicLink()) {
|
|
81416
|
+
try {
|
|
81417
|
+
if ((await stat(itemPath)).isFile()) arrayOfFiles.push(itemPath);
|
|
81418
|
+
} catch {
|
|
81419
|
+
}
|
|
81415
81420
|
}
|
|
81416
81421
|
}
|
|
81417
81422
|
return arrayOfFiles;
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|