@coana-tech/cli 14.12.175 → 14.12.176

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
@@ -251421,7 +251421,7 @@ async function onlineScan(dependencyTree, apiKey, timeout) {
251421
251421
  }
251422
251422
 
251423
251423
  // dist/version.js
251424
- var version3 = "14.12.175";
251424
+ var version3 = "14.12.176";
251425
251425
 
251426
251426
  // dist/cli-core.js
251427
251427
  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.175",
3
+ "version": "14.12.176",
4
4
  "description": "Coana CLI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -111038,9 +111038,10 @@ async function runJellyAnalysis(mainProjectRoot, projectRoot, jellyOptions, reac
111038
111038
  const useLazy = experiment === "LAZY_EXPERIMENT" || reachabilityAnalysisOptions.lazy;
111039
111039
  const { includePackages } = jellyOptions;
111040
111040
  const jellyCmd = cmdt`
111041
- ${await getNodeExecutable(ToolPathResolver.nodeExecutablePath)} --max-old-space-size=${reachabilityAnalysisOptions.memoryLimitInMB ?? 8192}
111042
- ${logFile && // Enable verbose GC tracing if log file is requested
111043
- ["--trace-gc", "--trace-gc-verbose", "--trace-gc-ignore-scavenger", "--trace-mutator-utilization"]}
111041
+ ${await getNodeExecutable(ToolPathResolver.nodeExecutablePath)}
111042
+ --max-old-space-size=${reachabilityAnalysisOptions.memoryLimitInMB ?? 8192}
111043
+ --max-semi-space-size=128
111044
+ ${logFile && ["--trace-gc", "--trace-gc-verbose", "--trace-gc-ignore-scavenger", "--trace-mutator-utilization"]}
111044
111045
  ${jellyExecutable}
111045
111046
  --basedir ${mainProjectRoot}
111046
111047
  --timeout ${timeoutInSeconds}