@coana-tech/cli 14.12.93 → 14.12.94

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
@@ -244541,7 +244541,7 @@ async function onlineScan(dependencyTree, apiKey, timeout) {
244541
244541
  }
244542
244542
 
244543
244543
  // dist/version.js
244544
- var version2 = "14.12.93";
244544
+ var version2 = "14.12.94";
244545
244545
 
244546
244546
  // dist/cli-core.js
244547
244547
  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.93",
3
+ "version": "14.12.94",
4
4
  "description": "Coana CLI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -80697,7 +80697,7 @@ async function getModuleInfo(goModPath) {
80697
80697
  }
80698
80698
  async function runGoModTidy(moduleDir, { continueOnError = false } = {}) {
80699
80699
  logger.debug(`Running 'go mod tidy' in ${moduleDir}`);
80700
- const { error } = await execNeverFail(["go", "mod", "tidy"], moduleDir);
80700
+ const { error } = await execNeverFail(["go", "mod", "tidy"], moduleDir, { timeout: 30 * 60 * 1e3 });
80701
80701
  logger.debug(`'go mod tidy' finished`);
80702
80702
  if (error) {
80703
80703
  const { Module, Go } = await getModuleInfo(moduleDir);