export const exitIfDryRun = ({ logExitingWarning }: IDeps) => ({ dryRun }: Ctx) =>
    any(dryRun).ifTrue(() =>
        logExitingWarning('Dry run mode. New version will not be published. Terminating.'),
    )