@coana-tech/cli 14.12.191 → 14.12.192
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
|
@@ -251523,7 +251523,7 @@ async function onlineScan(dependencyTree, apiKey, timeout) {
|
|
|
251523
251523
|
}
|
|
251524
251524
|
|
|
251525
251525
|
// dist/version.js
|
|
251526
|
-
var version3 = "14.12.
|
|
251526
|
+
var version3 = "14.12.192";
|
|
251527
251527
|
|
|
251528
251528
|
// dist/cli-core.js
|
|
251529
251529
|
var { mapValues, omit, partition, pickBy: pickBy2 } = import_lodash15.default;
|
package/package.json
CHANGED
|
@@ -112748,13 +112748,13 @@ async function setupMambalade() {
|
|
|
112748
112748
|
logger.debug("Creating Mambalade virtual environment");
|
|
112749
112749
|
const python = await getPythonRequest();
|
|
112750
112750
|
logger.debug(`Using Python interpreter: ${python}`);
|
|
112751
|
-
await exec2(cmdt`${uvCommand} venv --python=${python}
|
|
112751
|
+
await exec2(cmdt`${uvCommand} venv --no-project --no-config --python=${python} .`, venvDir);
|
|
112752
112752
|
const mambaladeWheelsPath = ToolPathResolver.mambaladeDistPath;
|
|
112753
112753
|
const mambaladeWheels = (await readdir4(mambaladeWheelsPath)).filter((f2) => f2.endsWith(".whl")).map((f2) => join17(mambaladeWheelsPath, f2));
|
|
112754
112754
|
if (!mambaladeWheels.length)
|
|
112755
112755
|
throw new Error(`No mambalade wheel files found in ${mambaladeWheelsPath}`);
|
|
112756
112756
|
logger.debug(`Installing mambalade wheels: ${mambaladeWheels.join(", ")}`);
|
|
112757
|
-
await
|
|
112757
|
+
await exec2(cmdt`${uvCommand} pip install --python=bin/python --no-config --no-deps ${mambaladeWheels}`, venvDir);
|
|
112758
112758
|
logger.debug("Mambalade virtual environment setup complete");
|
|
112759
112759
|
return venvDir;
|
|
112760
112760
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|