UNPKG

@changesets/cli

Version:

Organise your package versioning and publishing to make both contributors and maintainers happy

19 lines (18 loc) 460 B
import { AccessType } from "@changesets/types"; export declare type CliOptions = { commit?: boolean; changelog?: string; access?: AccessType; sinceMaster?: boolean; verbose?: boolean; output?: string; otp?: string; empty?: boolean; since?: string; ignore?: string | string[]; snapshot?: string | boolean; tag?: string; }; export declare type CommandOptions = CliOptions & { cwd: string; };