@merkl/api 0.21.6 → 0.21.7

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.
@@ -539,7 +539,7 @@ main()
539
539
  .then(results => {
540
540
  const rejected = results.find(result => result.status === "rejected");
541
541
  if (rejected)
542
- throw new Error(`One or more promises were rejected: ${JSON.stringify(rejected.reason)}`);
542
+ throw new Error(`One or more promises were rejected: ${rejected.reason}`);
543
543
  process.exit(0);
544
544
  })
545
545
  .catch(err => {