@cdwr/nx-migrate-action
Version:
The Nx Migrate GitHub Action will keep your workspace up to date.
11 lines (10 loc) • 384 B
TypeScript
import type { ActionInputs, ActionOutputs } from './utils/types';
/**
* Run nx migration process and create a pull request
* when the workspace is outdated
*
* @param inputs Migration options
* @param throwOnError Whether to throw on error
* @returns Migration results
*/
export declare function nxMigrate(inputs: ActionInputs, throwOnError?: boolean): Promise<ActionOutputs>;