@settlemint/sdk-utils 2.4.0-pr7c98613c → 2.4.0-pr7dabb22d

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.
@@ -11320,7 +11320,7 @@ function tryParseJson(value, defaultValue = null) {
11320
11320
  return defaultValue;
11321
11321
  }
11322
11322
  return parsed;
11323
- } catch (_err) {
11323
+ } catch (err) {
11324
11324
  return defaultValue;
11325
11325
  }
11326
11326
  }
@@ -18211,7 +18211,7 @@ async function findMonoRepoPackages(projectDir) {
18211
18211
  }));
18212
18212
  const allPaths = packagePaths.flat();
18213
18213
  return allPaths.length === 0 ? [projectDir] : [monoRepoRoot, ...allPaths];
18214
- } catch (_error) {
18214
+ } catch (error$37) {
18215
18215
  return [projectDir];
18216
18216
  }
18217
18217
  }