@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 +1 -1
- package/package.json +1 -1
- package/reachability-analyzers-cli.mjs +2 -2
- package/repos/coana-tech/goana/bin/goana-darwin-amd64.gz +0 -0
- package/repos/coana-tech/goana/bin/goana-darwin-arm64.gz +0 -0
- package/repos/coana-tech/goana/bin/goana-linux-amd64.gz +0 -0
- package/repos/coana-tech/goana/bin/goana-linux-arm64.gz +0 -0
- package/repos/coana-tech/javap-service/javap-service.jar +0 -0
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.
|
|
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
|
@@ -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
|
|
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
|
-
${
|
|
110487
|
+
${includePackages.length ? ["--include-packages", ...includePackages] : ["--ignore-dependencies"]}
|
|
110488
110488
|
${getExcludes(mainProjectRoot, projectRoot, options)}
|
|
110489
110489
|
--reachable-json ${reachableModulesFile}
|
|
110490
110490
|
${options.entryPoints ?? projectRoot}`;
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|