@rxap/plugin-library
Version:
This package provides generators and executors for managing and maintaining Nx plugin libraries. It includes functionality for generating index exports, fixing dependencies, generating JSON schemas, and more. It helps streamline the development process fo
15 lines (14 loc) • 466 B
TypeScript
export interface AddMigrationGeneratorSchema {
/** Name of the project */
project: string;
/** Name of the migration */
name: string;
/** Description of the migration */
description?: string;
/** Version to use for the migration. */
packageVersion?: string;
/** Whether or not to include `package.json` updates. */
packageJsonUpdates?: boolean;
/** Increment the version of the package.json file */
increment?: 'major' | 'minor' | 'patch';
}