@gearbox-protocol/deploy-tools 4.25.0 → 4.25.2
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 -7
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -366237,10 +366237,6 @@ var ForkTemplate = z.object({
|
|
|
366237
366237
|
* Will append deploy-report generation to scripts
|
|
366238
366238
|
*/
|
|
366239
366239
|
deployReport: z.boolean().default(false),
|
|
366240
|
-
/**
|
|
366241
|
-
* This flag is for old RUST snapshots and will be removed soon
|
|
366242
|
-
*/
|
|
366243
|
-
snapshots: z.boolean().default(false),
|
|
366244
366240
|
attachTests: z.boolean().default(false),
|
|
366245
366241
|
timeout: z.string().default("3h")
|
|
366246
366242
|
});
|
|
@@ -366263,13 +366259,13 @@ async function loadTemplate(file, interpolations) {
|
|
|
366263
366259
|
const forks = TemplateFile.parse(parsed);
|
|
366264
366260
|
return forks.map((f) => expandTemplate(f, interpolations));
|
|
366265
366261
|
}
|
|
366266
|
-
function expandTemplate(template, { release
|
|
366262
|
+
function expandTemplate(template, { release }) {
|
|
366267
366263
|
const { scripts: scriptz, ...rest } = template;
|
|
366268
366264
|
const scripts = scriptz.map(
|
|
366269
366265
|
(s) => ({
|
|
366270
366266
|
...s,
|
|
366271
366267
|
npx: s.npx || release,
|
|
366272
|
-
description: `${s.description || s.id} (${
|
|
366268
|
+
description: `${s.description || s.id} (${release})`
|
|
366273
366269
|
})
|
|
366274
366270
|
);
|
|
366275
366271
|
return {
|
|
@@ -366371,7 +366367,7 @@ function getRenderer(opts) {
|
|
|
366371
366367
|
}
|
|
366372
366368
|
|
|
366373
366369
|
// package.json
|
|
366374
|
-
var version3 = "4.25.
|
|
366370
|
+
var version3 = "4.25.2";
|
|
366375
366371
|
|
|
366376
366372
|
// src/version.ts
|
|
366377
366373
|
var version_default = version3;
|