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

15 lines (14 loc) 528 B
export interface FixDependenciesExecutorSchema { projects?: Array<string>; reset?: boolean; resolve?: boolean; resetAll?: boolean; /** If true, will fail if any dependency is not found */ strict?: boolean; /** If true, will move all peer dependencies to dependencies */ onlyDependencies?: boolean; /** List of packages that should always be added as dependencies */ dependencies?: Array<string>; /** List of packages that should always be added as peerDependencies */ peerDependencies?: Array<string>; }