@coana-tech/cli 14.12.124 → 14.12.125

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 CHANGED
@@ -251019,7 +251019,7 @@ async function onlineScan(dependencyTree, apiKey, timeout) {
251019
251019
  }
251020
251020
 
251021
251021
  // dist/version.js
251022
- var version3 = "14.12.124";
251022
+ var version3 = "14.12.125";
251023
251023
 
251024
251024
  // dist/cli-core.js
251025
251025
  var { mapValues, omit, partition, pickBy: pickBy2 } = import_lodash15.default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coana-tech/cli",
3
- "version": "14.12.124",
3
+ "version": "14.12.125",
4
4
  "description": "Coana CLI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -110415,7 +110415,7 @@ async function runJellyAnalysis(mainProjectRoot, projectRoot, jellyOptions, reac
110415
110415
  ${getExcludes(mainProjectRoot, projectRoot, reachabilityAnalysisOptions)}
110416
110416
  --diagnostics-json ${diagnosticsFile}
110417
110417
  --max-indirections=${jellyOptions.maxIndirections}
110418
- ${!!jellyOptions.includePackages?.length && ["--include-packages", ...jellyOptions.includePackages]}
110418
+ ${!!jellyOptions.includePackages && jellyOptions.includePackages.length ? ["--include-packages", ...jellyOptions.includePackages] : ["--ignore-dependencies"]}
110419
110419
  ${jellyOptions.approx && "--approx"}
110420
110420
  ${logFile ? ["--logfile", logFile] : []}
110421
110421
  --callstacks-json ${callStackFile}
@@ -110484,7 +110484,7 @@ async function runJellyImportReachabilityAnalysis(mainProjectRoot, projectRoot,
110484
110484
  const reachableModulesFile = resolve14(tmpFolder, "reachable-modules.json");
110485
110485
  const jellyCmd = cmdt`${await getNodeExecutable(ToolPathResolver.nodeExecutablePath)} --max-old-space-size=${options.memoryLimitInMB}
110486
110486
  ${ToolPathResolver.jellyPath} --basedir ${mainProjectRoot} --modules-only
110487
- ${!!includePackages.length && ["--include-packages", ...includePackages]}
110487
+ ${includePackages.length ? ["--include-packages", ...includePackages] : ["--ignore-dependencies"]}
110488
110488
  ${getExcludes(mainProjectRoot, projectRoot, options)}
110489
110489
  --reachable-json ${reachableModulesFile}
110490
110490
  ${options.entryPoints ?? projectRoot}`;