UNPKG

ng-upgrade-orchestrator

Version:

Enterprise-grade Angular Multi-Version Upgrade Orchestrator with automatic npm installation, comprehensive dependency management, and seamless integration of all 9 official Angular migrations. Safely migrate Angular applications across multiple major vers

25 lines 845 B
/** * Comprehensive dependency compatibility matrix for Angular versions */ export interface CompatibleVersion { name: string; version: string; type: 'dependencies' | 'devDependencies'; required?: boolean; notes?: string; } export declare class DependencyCompatibilityMatrix { /** * Get compatible third-party dependencies for Angular version */ static getCompatibleDependencies(angularVersion: string): CompatibleVersion[]; /** * Check if a package should be removed for a specific Angular version */ static getDeprecatedPackages(angularVersion: string): string[]; /** * Get migration notes for specific packages */ static getMigrationNotes(packageName: string, angularVersion: string): string | undefined; } //# sourceMappingURL=DependencyCompatibilityMatrix.d.ts.map