UNPKG

@reliverse/rse-sdk

Version:

@reliverse/rse-sdk allows you to create new plugins for @reliverse/rse CLI, interact with reliverse.org, and even extend your own CLI functionality (you may also try @reliverse/dler-sdk for this case).

10 lines (9 loc) 249 B
/** * Runs each codemod one by one using `codemod <name> <optional-flags>`. */ export declare function runCodemods(names: string[], options: { dry?: boolean; format?: boolean; include?: string; exclude?: string; }): Promise<void>;