@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) • 460 B
TypeScript
export interface InitPublishableGeneratorSchema {
project?: string;
projects?: Array<string>;
skipFormat?: boolean;
/** Whether to overwrite existing files */
overwrite?: boolean;
/** Whether to skip executing project specific initialization */
skipProjects?: boolean;
withInitGenerator?: boolean;
targets?: {
/** If set to false the target fix-dependencies will not be added to the project */
fixDependencies?: boolean;
};
}