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

16 lines 864 B
import { type Tree } from '@nx/devkit'; import { type PackageCompatVersions, type PackageLatestVersions } from '../../utils/backward-compatible-versions'; export declare function getInstalledAngularDevkitVersion(tree: Tree): string | null; export declare function getInstalledAngularVersion(tree: Tree): string; export declare function getInstalledAngularMajorVersion(tree: Tree): number; export declare function getInstalledAngularVersionInfo(tree: Tree): { version: string; major: number; }; export declare function getInstalledPackageVersion(tree: Tree, pkgName: string): string | null; export declare function getInstalledPackageVersionInfo(tree: Tree, pkgName: string): { major: number; version: string; }; export declare function versions(tree: Tree): PackageLatestVersions | PackageCompatVersions; //# sourceMappingURL=version-utils.d.ts.map