@gearbox-protocol/deploy-tools 4.45.0-next.3 → 4.45.0
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 +3 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -295408,7 +295408,8 @@ async function loadTemplate(file, interpolations) {
|
|
|
295408
295408
|
let raw = await readFile7(file, "utf-8");
|
|
295409
295409
|
for (const [key, val] of Object.entries(interpolations)) {
|
|
295410
295410
|
if (key && val) {
|
|
295411
|
-
|
|
295411
|
+
const value = val.split("\n")[0];
|
|
295412
|
+
raw = raw.replace(new RegExp(`%${key}`, "g"), value);
|
|
295412
295413
|
}
|
|
295413
295414
|
}
|
|
295414
295415
|
let parsed;
|
|
@@ -295528,7 +295529,7 @@ function getRenderer(opts) {
|
|
|
295528
295529
|
}
|
|
295529
295530
|
|
|
295530
295531
|
// package.json
|
|
295531
|
-
var version2 = "4.45.0
|
|
295532
|
+
var version2 = "4.45.0";
|
|
295532
295533
|
|
|
295533
295534
|
// src/version.ts
|
|
295534
295535
|
var version_default = version2;
|