UNPKG

@nx/next

Version:

The Next.js plugin for Nx contains executors and generators for managing Next.js applications and libraries within an Nx workspace. It provides: - Scaffolding for creating, building, serving, linting, and testing Next.js applications. - Integration wit

10 lines 489 B
import { type Tree } from '@nx/devkit'; type NextDependenciesVersions = { next: string; }; export declare function getNextDependenciesVersionsToInstall(tree: Tree, isReact18?: boolean): Promise<NextDependenciesVersions>; export declare function isNext14(tree: Tree): Promise<boolean>; export declare function getInstalledNextVersion(tree: Tree): string; export declare function getInstalledNextVersionFromGraph(): Promise<string>; export {}; //# sourceMappingURL=version-utils.d.ts.map