UNPKG

@nx/nuxt

Version:

The Nuxt plugin for Nx contains executors and generators for managing Nuxt applications and libraries within an Nx workspace. It provides: - Integration with libraries such as Vitest, Playwright, Cypress, and Storybook. - Generators for applications, l

15 lines 741 B
import type { Tree } from 'nx/src/generators/tree'; export type NuxtDependenciesVersions = { nuxt: string; nuxtKit: string; h3: string; nuxtDevtools: string; nuxtUiTemplates: string; }; export declare function getNuxtDependenciesVersionsToInstall(tree: Tree): Promise<NuxtDependenciesVersions>; export declare function isNuxtV3(tree: Tree): Promise<boolean>; export declare function isNuxtV4(tree: Tree): Promise<boolean>; export declare function getInstalledNuxtVersion(tree: Tree): string | undefined; export declare function getInstalledNuxtMajorVersion(tree: Tree): 3 | 4 | undefined; export declare function getInstalledNuxtVersionFromGraph(): Promise<string | undefined>; //# sourceMappingURL=version-utils.d.ts.map