@gearbox-protocol/deploy-tools 4.45.1 → 4.45.3
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/dist/index.mjs +14 -7
- 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
|
-
|
|
295480
|
-
|
|
295481
|
-
|
|
295482
|
-
|
|
295483
|
-
|
|
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.
|
|
295539
|
+
var version2 = "4.45.3";
|
|
295533
295540
|
|
|
295534
295541
|
// src/version.ts
|
|
295535
295542
|
var version_default = version2;
|