@coana-tech/cli 14.12.87 → 14.12.88

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
@@ -221274,7 +221274,8 @@ var NpmSocketUpgradeManager = class {
221274
221274
  const oldFileContent = await readFile16(resolve19(this.rootDir, lockfile2), "utf-8");
221275
221275
  let result;
221276
221276
  if (this.packageLockMatcher(lockfile2)) {
221277
- const command = mode === "LOCKFILE_ONLY" ? cmdt`npm install --package-lock-only --loglevel=verbose` : cmdt`npm install -f --ignore-scripts --no-fund --no-audit --no-progress --loglevel=verbose`;
221277
+ const npmBin = await getNpmBin();
221278
+ const command = mode === "LOCKFILE_ONLY" ? cmdt`${npmBin} install --package-lock-only --loglevel=verbose` : cmdt`${npmBin} install -f --ignore-scripts --no-fund --no-audit --no-progress --loglevel=verbose`;
221278
221279
  result = await execNeverFail(command, lockfileDir);
221279
221280
  } else if (this.pnpmLockMatcher(lockfile2)) {
221280
221281
  const command = mode === "LOCKFILE_ONLY" ? cmdt`pnpm install --lockfile-only` : cmdt`pnpm install --ignore-scripts --fix-lockfile --config.confirmModulesPurge=false`;
@@ -245916,7 +245917,7 @@ async function onlineScan(dependencyTree, apiKey, timeout) {
245916
245917
  }
245917
245918
 
245918
245919
  // dist/version.js
245919
- var version2 = "14.12.87";
245920
+ var version2 = "14.12.88";
245920
245921
 
245921
245922
  // dist/cli-core.js
245922
245923
  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.87",
3
+ "version": "14.12.88",
4
4
  "description": "Coana CLI",
5
5
  "type": "module",
6
6
  "bin": {