@gearbox-protocol/deploy-tools 4.52.2 → 4.52.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 +5 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -307753,9 +307753,12 @@ async function loadTemplate(file, interpolations) {
|
|
|
307753
307753
|
}
|
|
307754
307754
|
function expandTemplate(template, { release }) {
|
|
307755
307755
|
const { scripts: scriptz, ...rest } = template;
|
|
307756
|
-
const scripts = scriptz.map(
|
|
307756
|
+
const scripts = (scriptz ?? []).map(
|
|
307757
307757
|
(s) => ({
|
|
307758
307758
|
...s,
|
|
307759
|
+
args: s.args ?? [],
|
|
307760
|
+
env: s.env ?? {},
|
|
307761
|
+
flags: s.flags ?? [],
|
|
307759
307762
|
npx: s.npx || release,
|
|
307760
307763
|
description: `${s.description || s.id} (${release})`
|
|
307761
307764
|
})
|
|
@@ -307866,7 +307869,7 @@ function getRenderer(opts) {
|
|
|
307866
307869
|
}
|
|
307867
307870
|
|
|
307868
307871
|
// package.json
|
|
307869
|
-
var version2 = "4.52.
|
|
307872
|
+
var version2 = "4.52.3";
|
|
307870
307873
|
|
|
307871
307874
|
// src/version.ts
|
|
307872
307875
|
var version_default = version2;
|