@gearbox-protocol/deploy-tools 4.45.0-next.4 → 4.45.1

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 +3 -2
  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
- raw = raw.replace(new RegExp(`%${key}`, "g"), val);
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-next.4";
295532
+ var version2 = "4.45.1";
295532
295533
 
295533
295534
  // src/version.ts
295534
295535
  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-next.4",
4
+ "version": "4.45.1",
5
5
  "homepage": "https://gearbox.fi",
6
6
  "keywords": [
7
7
  "gearbox"