@coana-tech/cli 14.12.65 → 14.12.66
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 +2 -3
- package/package.json +1 -1
- package/reachability-analyzers-cli.mjs +4945 -1618
- package/repos/coana-tech/alucard/alucard.jar +0 -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/cli.mjs
CHANGED
|
@@ -243135,7 +243135,7 @@ async function onlineScan(dependencyTree, apiKey, timeout) {
|
|
|
243135
243135
|
}
|
|
243136
243136
|
|
|
243137
243137
|
// dist/version.js
|
|
243138
|
-
var version2 = "14.12.
|
|
243138
|
+
var version2 = "14.12.66";
|
|
243139
243139
|
|
|
243140
243140
|
// dist/cli-core.js
|
|
243141
243141
|
var { mapValues, omit, partition, pick } = import_lodash15.default;
|
|
@@ -243329,8 +243329,7 @@ var CliCore = class {
|
|
|
243329
243329
|
otherModulesCommunicator,
|
|
243330
243330
|
this.rootWorkingDirectory,
|
|
243331
243331
|
ecosystem,
|
|
243332
|
-
|
|
243333
|
-
["NPM", "PIP", "GO", "MAVEN", "NUGET", "RUST"].includes(ecosystem) && isEcosystemToAnalyze,
|
|
243332
|
+
["NPM", "PIP", "GO", "MAVEN", "NUGET", "RUST", "RUBYGEMS"].includes(ecosystem) && isEcosystemToAnalyze,
|
|
243334
243333
|
(workspaceName, workspaceNumber, totalWorkspacesForCurrentEcosystem) => {
|
|
243335
243334
|
currentOverallWorkspace++;
|
|
243336
243335
|
logger.info(bold(`Analyzing ecosystem ${ecosystem} for project ${workspaceName} (${workspaceNumber}/${totalWorkspacesForCurrentEcosystem}) - Overall progress: Project ${currentOverallWorkspace}/${totalWorkspaces}, ecosystem ${ecosystemIndex + 1}/${totalEcosystems}`));
|