UNPKG

@nx/vite

Version:

The Nx Plugin for building and testing applications using Vite

12 lines (11 loc) 517 B
import type { Tree } from 'nx/src/generators/tree'; type VitestDependenciesVersions = { vitest: string; vitestCoverageV8: string; vitestCoverageIstanbul: string; }; export declare function getVitestDependenciesVersionsToInstall(tree: Tree): Promise<VitestDependenciesVersions>; export declare function isVitestV1(tree: Tree): Promise<boolean>; export declare function getInstalledVitestVersion(tree: Tree): string; export declare function getInstalledVitestVersionFromGraph(): Promise<string>; export {};