@gearbox-protocol/deploy-tools 4.25.0 → 4.25.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 -3
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -366263,13 +366263,13 @@ async function loadTemplate(file, interpolations) {
|
|
|
366263
366263
|
const forks = TemplateFile.parse(parsed);
|
|
366264
366264
|
return forks.map((f) => expandTemplate(f, interpolations));
|
|
366265
366265
|
}
|
|
366266
|
-
function expandTemplate(template, { release
|
|
366266
|
+
function expandTemplate(template, { release }) {
|
|
366267
366267
|
const { scripts: scriptz, ...rest } = template;
|
|
366268
366268
|
const scripts = scriptz.map(
|
|
366269
366269
|
(s) => ({
|
|
366270
366270
|
...s,
|
|
366271
366271
|
npx: s.npx || release,
|
|
366272
|
-
description: `${s.description || s.id} (${
|
|
366272
|
+
description: `${s.description || s.id} (${release})`
|
|
366273
366273
|
})
|
|
366274
366274
|
);
|
|
366275
366275
|
return {
|
|
@@ -366371,7 +366371,7 @@ function getRenderer(opts) {
|
|
|
366371
366371
|
}
|
|
366372
366372
|
|
|
366373
366373
|
// package.json
|
|
366374
|
-
var version3 = "4.25.
|
|
366374
|
+
var version3 = "4.25.1";
|
|
366375
366375
|
|
|
366376
366376
|
// src/version.ts
|
|
366377
366377
|
var version_default = version3;
|