@gearbox-protocol/deploy-tools 4.45.0 → 4.45.2

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.
Files changed (2) hide show
  1. package/dist/index.mjs +14 -7
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -295476,12 +295476,19 @@ function launchForks() {
295476
295476
  },
295477
295477
  body: JSON.stringify(forks)
295478
295478
  });
295479
- const answer = await resp.json();
295480
- console.log(answer);
295481
- const end = /* @__PURE__ */ new Date();
295482
- console.log(
295483
- `done in ${formatDuration(intervalToDuration({ start, end }))}`
295484
- );
295479
+ let raw = "";
295480
+ try {
295481
+ raw = await resp.text();
295482
+ const answer = JSON.parse(raw);
295483
+ console.log(answer);
295484
+ const end = /* @__PURE__ */ new Date();
295485
+ console.log(
295486
+ `done in ${formatDuration(intervalToDuration({ start, end }))}`
295487
+ );
295488
+ } catch (e) {
295489
+ console.error(e);
295490
+ console.log(raw);
295491
+ }
295485
295492
  });
295486
295493
  }
295487
295494
 
@@ -295529,7 +295536,7 @@ function getRenderer(opts) {
295529
295536
  }
295530
295537
 
295531
295538
  // package.json
295532
- var version2 = "4.45.0";
295539
+ var version2 = "4.45.2";
295533
295540
 
295534
295541
  // src/version.ts
295535
295542
  var version_default = version2;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/deploy-tools",
3
3
  "description": "Gearbox deploy tools",
4
- "version": "4.45.0",
4
+ "version": "4.45.2",
5
5
  "homepage": "https://gearbox.fi",
6
6
  "keywords": [
7
7
  "gearbox"