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

13 lines (12 loc) 1.13 kB
declare global { var NX_GRAPH_CREATION: boolean; } export declare const NEXT_BUILD_EXECUTOR_DEPRECATION_MESSAGE = "The `@nx/next:build` executor is deprecated and will be removed in Nx v24. Run `nx g @nx/next:convert-to-inferred` to migrate to the `@nx/next/plugin` inferred targets. See https://nx.dev/docs/guides/tasks--caching/convert-to-inferred for details."; export declare const NEXT_SERVER_EXECUTOR_DEPRECATION_MESSAGE = "The `@nx/next:server` executor is deprecated and will be removed in Nx v24. Run `nx g @nx/next:convert-to-inferred` to migrate to the `@nx/next/plugin` inferred targets. See https://nx.dev/docs/guides/tasks--caching/convert-to-inferred for details."; export declare function warnNextBuildExecutorDeprecation(): void; export declare function warnNextServerExecutorDeprecation(): void; export declare function warnNextExecutorGenerating(): void; export declare const WITHNX_DEPRECATION_MESSAGE: string; export declare const COMPOSE_PLUGINS_DEPRECATION_MESSAGE: string; export declare function warnWithNxDeprecation(): void; export declare function warnComposePluginsDeprecation(phase: string): void;