@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.
- package/dist/index.mjs +3 -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
|
-
|
|
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.
|
|
258950
|
+
var version2 = "4.44.1";
|
|
258950
258951
|
|
|
258951
258952
|
// src/version.ts
|
|
258952
258953
|
var version_default = version2;
|