UNPKG

@changesets/pre

Version:

Utils to make a Changesets repo enter and exit pre mode

5 lines (4 loc) 264 B
import { PreState } from "@changesets/types"; export declare function readPreState(cwd: string): Promise<PreState | undefined>; export declare function exitPre(cwd: string): Promise<void>; export declare function enterPre(cwd: string, tag: string): Promise<void>;