@coana-tech/cli 14.12.12 → 14.12.13

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
@@ -210337,9 +210337,9 @@ function inferWorkspaceFromManifestPath(ecosystem, manifestPath, properPythonPro
210337
210337
  return workspaceDir;
210338
210338
  }
210339
210339
  if (base.endsWith(".txt")) {
210340
- const isWithinProperProject = properPythonProjects.some((properProjectDir) => (workspaceDir === "." || workspaceDir.startsWith(properProjectDir)) && workspaceDir.replace(properProjectDir, "").split(sep5).length <= REQUIREMENTS_FILES_SEARCH_DEPTH2);
210341
- if (isWithinProperProject) {
210342
- return void 0;
210340
+ const properProjectDir = properPythonProjects.find((properProjectDir2) => (workspaceDir === "." || workspaceDir.startsWith(properProjectDir2)) && workspaceDir.replace(properProjectDir2, "").split(sep5).length <= REQUIREMENTS_FILES_SEARCH_DEPTH2);
210341
+ if (properProjectDir) {
210342
+ return properProjectDir;
210343
210343
  }
210344
210344
  return workspaceDir;
210345
210345
  }
@@ -225660,7 +225660,7 @@ async function onlineScan(dependencyTree, apiKey, timeout) {
225660
225660
  }
225661
225661
 
225662
225662
  // dist/version.js
225663
- var version2 = "14.12.12";
225663
+ var version2 = "14.12.13";
225664
225664
 
225665
225665
  // dist/cli-core.js
225666
225666
  var { mapValues, omit, partition, pick } = import_lodash15.default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coana-tech/cli",
3
- "version": "14.12.12",
3
+ "version": "14.12.13",
4
4
  "description": "Coana CLI",
5
5
  "type": "module",
6
6
  "bin": {