UNPKG

@nx/cypress

Version:

The Nx Plugin for Cypress contains executors and generators allowing your workspace to use the powerful Cypress integration testing capabilities.

16 lines (15 loc) 1.08 kB
import { type Tree } from '@nx/devkit'; export declare const nxVersion: any; export declare const minSupportedCypressVersion = "13.0.0"; export declare const eslintPluginCypressVersion = "^3.5.0"; export declare const typesNodeVersion = "^22.0.0"; export declare const cypressViteDevServerVersion = "^7.3.1"; export declare const cypressVersion = "^15.17.0"; export declare const cypressWebpackVersion = "^5.4.1"; export declare const viteVersion = "^6.0.0"; export declare const htmlWebpackPluginVersion = "^5.5.0"; export type CypressVersions = Record<keyof Omit<typeof import('./versions'), 'nxVersion' | 'minSupportedCypressVersion' | 'versions' | 'getInstalledCypressVersion' | 'getInstalledCypressMajorVersion' | 'assertMinimumCypressVersion'>, string>; export declare function versions(tree: Tree): CypressVersions; export declare function getInstalledCypressVersion(tree?: Tree): string | null; export declare function getInstalledCypressMajorVersion(tree?: Tree): number | null; export declare function assertMinimumCypressVersion(minVersion: number, tree?: Tree): void;