@gearbox-protocol/deploy-tools 4.51.0 → 4.51.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 +4 -4
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -229221,11 +229221,11 @@ var ScriptTemplate = z.object({
|
|
|
229221
229221
|
description: z.string().optional(),
|
|
229222
229222
|
npx: z.string().optional(),
|
|
229223
229223
|
timeout: z.string().optional(),
|
|
229224
|
-
args: z.array(z.string().min(1)).optional().transform((v) => v?.length ? v : void 0),
|
|
229224
|
+
args: z.array(z.string().min(1)).optional().nullable().transform((v) => v?.length ? v : void 0),
|
|
229225
229225
|
// replace empty array with undefined
|
|
229226
|
-
env: z.record(z.string(), z.string()).optional().transform((v) => Object.keys(v ?? {}).length ? v : void 0),
|
|
229226
|
+
env: z.record(z.string(), z.string()).optional().nullable().transform((v) => Object.keys(v ?? {}).length ? v : void 0),
|
|
229227
229227
|
// replace empty object with undefined
|
|
229228
|
-
flags: z.array(z.string().min(1)).optional().transform((v) => v?.length ? v : void 0)
|
|
229228
|
+
flags: z.array(z.string().min(1)).optional().nullable().transform((v) => v?.length ? v : void 0)
|
|
229229
229229
|
// replace array object with undefined
|
|
229230
229230
|
});
|
|
229231
229231
|
var ForkTemplate = z.object({
|
|
@@ -307866,7 +307866,7 @@ function getRenderer(opts) {
|
|
|
307866
307866
|
}
|
|
307867
307867
|
|
|
307868
307868
|
// package.json
|
|
307869
|
-
var version2 = "4.51.
|
|
307869
|
+
var version2 = "4.51.1";
|
|
307870
307870
|
|
|
307871
307871
|
// src/version.ts
|
|
307872
307872
|
var version_default = version2;
|