Skip to main content
Module

x/release_up/config.ts

🌱 Automate releases
Go to Latest
File
// import type { ReleasePlugin } from "./plugin.ts";
interface CliConfig { options: { dry?: boolean; allowUncommitted?: boolean; debug?: boolean; };}
export type ReleaseConfig<T> = T & CliConfig;