@gearbox-protocol/deploy-tools 4.43.0 → 4.44.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
@@ -258826,7 +258826,8 @@ async function loadTemplate(file, interpolations) {
258826
258826
  let raw = await readFile7(file, "utf-8");
258827
258827
  for (const [key, val] of Object.entries(interpolations)) {
258828
258828
  if (key && val) {
258829
- raw = raw.replace(new RegExp(`%${key}`, "g"), val);
258829
+ const value = val.split("\n")[0];
258830
+ raw = raw.replace(new RegExp(`%${key}`, "g"), value);
258830
258831
  }
258831
258832
  }
258832
258833
  let parsed;
@@ -258946,7 +258947,7 @@ function getRenderer(opts) {
258946
258947
  }
258947
258948
 
258948
258949
  // package.json
258949
- var version2 = "4.43.0";
258950
+ var version2 = "4.44.1";
258950
258951
 
258951
258952
  // src/version.ts
258952
258953
  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.43.0",
4
+ "version": "4.44.1",
5
5
  "homepage": "https://gearbox.fi",
6
6
  "keywords": [
7
7
  "gearbox"