UNPKG

@nx/angular

Version:

The Nx Plugin for Angular contains executors, generators, and utilities for managing Angular applications and libraries within an Nx workspace. It provides: - Integration with libraries such as Storybook, Jest, ESLint, Tailwind CSS, Playwright and Cypre

14 lines 841 B
import type { ProjectConfiguration, TargetConfiguration, Tree } from '@nx/devkit'; import type { Logger, ProjectMigrationInfo, ValidationResult, WorkspaceRootFileType } from '../../utilities'; import { Migrator } from '../migrator'; export declare abstract class BuilderMigrator extends Migrator { readonly possibleBuilderNames: string[]; readonly rootFileType: WorkspaceRootFileType | undefined; targets: Map<string, TargetConfiguration>; protected skipMigration: boolean; constructor(tree: Tree, possibleBuilderNames: string[], rootFileType: WorkspaceRootFileType | undefined, project: ProjectMigrationInfo, projectConfig: ProjectConfiguration, logger: Logger); validate(): ValidationResult; isBuilderUsed(): boolean; protected collectBuilderTargets(): void; } //# sourceMappingURL=builder.migrator.d.ts.map