fix: remove rouge console log

This commit is contained in:
William Oldham 2025-09-19 21:54:50 +01:00
parent 48a1ca83df
commit 40a0308088

View File

@ -99,7 +99,7 @@ export function commandHandler<T extends any[]>(cb: (ctx: CommandHandlerCtx<T>)
format: globalOpts.json ? 'json' : 'pretty',
opts: () => cmd.opts() as any
};
console.log(globalOpts);
return cb(ctx);
};
}