@coana-tech/cli 14.12.166 → 14.12.167

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
@@ -251307,7 +251307,7 @@ async function onlineScan(dependencyTree, apiKey, timeout) {
251307
251307
  }
251308
251308
 
251309
251309
  // dist/version.js
251310
- var version3 = "14.12.166";
251310
+ var version3 = "14.12.167";
251311
251311
 
251312
251312
  // dist/cli-core.js
251313
251313
  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.166",
3
+ "version": "14.12.167",
4
4
  "description": "Coana CLI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -111005,6 +111005,8 @@ async function runJellyAnalysis(mainProjectRoot, projectRoot, jellyOptions, reac
111005
111005
  const additionalFlags = process.env.JELLY_ADDITIONAL_FLAGS?.split(/\s+/).filter(Boolean) ?? [];
111006
111006
  const jellyCmd = cmdt`
111007
111007
  ${await getNodeExecutable(ToolPathResolver.nodeExecutablePath)} --max-old-space-size=${reachabilityAnalysisOptions.memoryLimitInMB ?? 8192}
111008
+ ${logFile && // Enable verbose GC tracing if log file is requested
111009
+ ["--trace-gc", "--trace-gc-verbose", "--trace-gc-ignore-scavenger", "--trace-mutator-utilization"]}
111008
111010
  ${jellyExecutable}
111009
111011
  --basedir ${mainProjectRoot}
111010
111012
  --timeout ${timeoutInSeconds}