@coana-tech/cli 14.0.16 → 14.0.18

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.
Files changed (2) hide show
  1. package/cli.js +5 -3
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -99357,6 +99357,8 @@ var init_other_modules_communicator = __esm({
99357
99357
  switch (cmd) {
99358
99358
  case "runReachabilityAnalysis":
99359
99359
  return "Running reachability analysis";
99360
+ case "runOnDependencyChain":
99361
+ return "Running reachability analysis on dependency chain";
99360
99362
  }
99361
99363
  }
99362
99364
  return `${_cmdStr()}: (${ecosystem}) ${(0, import_path20.join)(subprojectPath, workspacePath)}`;
@@ -99459,7 +99461,7 @@ var init_other_modules_communicator = __esm({
99459
99461
  }
99460
99462
  async runReachabilityAnalyzerCommandWithOutput(commandName, ecosystem, subprojectPath, workspacePath, args2, env) {
99461
99463
  const tmpDir = await this.getTmpDirForSubproject(subprojectPath);
99462
- const outputFilePath = (0, import_path20.join)(tmpDir, `${commandName}-output.json`);
99464
+ const outputFilePath = (0, import_path20.join)(tmpDir, `${v4_default()}-${commandName}-output.json`);
99463
99465
  await this.runReachabilityAnalyzerCommand(
99464
99466
  commandName,
99465
99467
  ecosystem,
@@ -99532,7 +99534,7 @@ var init_other_modules_communicator = __esm({
99532
99534
  }
99533
99535
  async runReachabilityAnalysis(subprojectPath, workspacePath, workspaceData, vulnerabilities, reachabilityAnalysisOptions, otherAnalysisOptions) {
99534
99536
  const tmpDir = await this.getTmpDirForSubproject(subprojectPath);
99535
- const inputFile = (0, import_path20.join)(tmpDir, "input.json");
99537
+ const inputFile = (0, import_path20.join)(tmpDir, `${v4_default()}-runReachabilityAnalysis-input.json`);
99536
99538
  await (0, import_promises12.writeFile)(
99537
99539
  inputFile,
99538
99540
  JSON.stringify({
@@ -193988,7 +193990,7 @@ var require_version = __commonJS({
193988
193990
  "use strict";
193989
193991
  Object.defineProperty(exports2, "__esModule", { value: true });
193990
193992
  exports2.version = void 0;
193991
- exports2.version = "14.0.16";
193993
+ exports2.version = "14.0.18";
193992
193994
  }
193993
193995
  });
193994
193996
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coana-tech/cli",
3
- "version": "14.0.16",
3
+ "version": "14.0.18",
4
4
  "description": "Coana CLI",
5
5
  "bin": {
6
6
  "@coana-tech/cli": "./cli.js"