@coana-tech/cli 14.12.30 → 14.12.31
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 +1 -1
- package/package.json +1 -1
- package/repos/coana-tech/alucard/alucard.jar +0 -0
- package/repos/coana-tech/class-graph-analysis/dist/bundle/class-graph-analysis-cli.mjs +12 -3
- 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/cli.mjs
CHANGED
|
@@ -227468,7 +227468,7 @@ async function onlineScan(dependencyTree, apiKey, timeout) {
|
|
|
227468
227468
|
}
|
|
227469
227469
|
|
|
227470
227470
|
// dist/version.js
|
|
227471
|
-
var version2 = "14.12.
|
|
227471
|
+
var version2 = "14.12.31";
|
|
227472
227472
|
|
|
227473
227473
|
// dist/cli-core.js
|
|
227474
227474
|
var { mapValues, omit, partition, pick } = import_lodash15.default;
|
package/package.json
CHANGED
|
Binary file
|
|
@@ -7487,7 +7487,10 @@ var SourceResolutionManager = class {
|
|
|
7487
7487
|
promiseFns.push(async () => {
|
|
7488
7488
|
const resolver = this.resolverCb(file);
|
|
7489
7489
|
if (resolver) {
|
|
7490
|
-
|
|
7490
|
+
try {
|
|
7491
|
+
await resolver.getDeclarationNodes(packageId, sourceDir, file, ecosystemSpecificPackageInfo, graph);
|
|
7492
|
+
} catch {
|
|
7493
|
+
}
|
|
7491
7494
|
}
|
|
7492
7495
|
});
|
|
7493
7496
|
}
|
|
@@ -7509,7 +7512,10 @@ var SourceResolutionManager = class {
|
|
|
7509
7512
|
const resolver = this.resolverCb(file);
|
|
7510
7513
|
if (resolver) {
|
|
7511
7514
|
if (resolver.getDefinitionNodes) {
|
|
7512
|
-
|
|
7515
|
+
try {
|
|
7516
|
+
await resolver.getDefinitionNodes(packageId, sourceDir, file, resolutionContext, ecosystemSpecificPackageInfo, graph);
|
|
7517
|
+
} catch {
|
|
7518
|
+
}
|
|
7513
7519
|
}
|
|
7514
7520
|
}
|
|
7515
7521
|
});
|
|
@@ -7550,7 +7556,10 @@ var SourceResolutionManager = class {
|
|
|
7550
7556
|
const resolver = this.resolverCb(node.file);
|
|
7551
7557
|
if (!resolver)
|
|
7552
7558
|
continue;
|
|
7553
|
-
|
|
7559
|
+
try {
|
|
7560
|
+
await resolver.getEdges(node, resolutionContext, graph);
|
|
7561
|
+
} catch {
|
|
7562
|
+
}
|
|
7554
7563
|
visited.add(idx);
|
|
7555
7564
|
}
|
|
7556
7565
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|