UNPKG

@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

19 lines (18 loc) 652 B
export interface InitGeneratorSchema { project?: string; projects?: Array<string>; skipFormat?: boolean; /** Whether to overwrite existing files */ overwrite?: boolean; /** Whether to skip executing project specific initialization */ skipProjects?: boolean; /** Whether to add the index-export target to the library */ indexExport?: boolean; withInitGenerator?: boolean; targets?: { /** If set to false the target fix-dependencies will not be added to the project */ fixDependencies?: boolean; /** If set to false the target index-export will not be added to the project */ indexExport?: boolean; }; }