@coana-tech/cli 14.12.163 → 14.12.164

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
@@ -251289,7 +251289,7 @@ async function onlineScan(dependencyTree, apiKey, timeout) {
251289
251289
  }
251290
251290
 
251291
251291
  // dist/version.js
251292
- var version3 = "14.12.163";
251292
+ var version3 = "14.12.164";
251293
251293
 
251294
251294
  // dist/cli-core.js
251295
251295
  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.163",
3
+ "version": "14.12.164",
4
4
  "description": "Coana CLI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -110982,6 +110982,7 @@ async function runJellyAnalysis(mainProjectRoot, projectRoot, jellyOptions, reac
110982
110982
  await writeFile7(vulnerabilitiesFile, JSON.stringify(vulnerabilitiesInJellyFormat));
110983
110983
  const useLazy = experiment === "LAZY_EXPERIMENT" || reachabilityAnalysisOptions.lazy;
110984
110984
  const { includePackages } = jellyOptions;
110985
+ const additionalFlags = process.env.JELLY_ADDITIONAL_FLAGS?.split(/\s+/).filter(Boolean) ?? [];
110985
110986
  const jellyCmd = cmdt`
110986
110987
  ${await getNodeExecutable(ToolPathResolver.nodeExecutablePath)} --max-old-space-size=${reachabilityAnalysisOptions.memoryLimitInMB ?? 8192}
110987
110988
  ${jellyExecutable}
@@ -110997,6 +110998,7 @@ async function runJellyAnalysis(mainProjectRoot, projectRoot, jellyOptions, reac
110997
110998
  ${jellyOptions.approx && "--approx"}
110998
110999
  ${logFile ? ["--logfile", logFile] : []}
110999
111000
  --callstacks-json ${callStackFile}
111001
+ ${additionalFlags}
111000
111002
  ${filesToAnalyze}
111001
111003
  `;
111002
111004
  if (PRINT_JELLY_COMMAND)