@coana-tech/cli 14.12.190 → 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 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.190";
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coana-tech/cli",
3
- "version": "14.12.190",
3
+ "version": "14.12.192",
4
4
  "description": "Coana CLI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -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} ${venvDir}`);
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 execUvPipInstall(cmdt`${uvCommand} pip install --python=${venvDir}/bin/python --no-deps ${mambaladeWheels}`);
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
  }
@@ -7165,7 +7165,18 @@ function extractClassReferences(javapOutput) {
7165
7165
  }
7166
7166
  break;
7167
7167
  }
7168
- case "String":
7168
+ case "String": {
7169
+ const resolved = resolveConstantPoolEntry(index, pool);
7170
+ if (resolved) {
7171
+ references.add(resolved.replace(/\//g, "."));
7172
+ if (resolved.includes("L") || resolved.includes("/")) {
7173
+ for (const className of extractClassNamesFromDescriptor(resolved)) {
7174
+ references.add(className);
7175
+ }
7176
+ }
7177
+ }
7178
+ break;
7179
+ }
7169
7180
  case "Utf8": {
7170
7181
  const value = entry.value;
7171
7182
  if (value && (value.includes("L") || value.includes("/"))) {