UNPKG

@nx/react

Version:

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

8 lines (7 loc) 332 B
import type { SupportedBundler } from './normalize'; export interface DepsBundle { dependencies: Record<string, string>; devDependencies: Record<string, string>; } export declare function getProviderDeps(bundler: SupportedBundler): DepsBundle; export declare function getConsumerDeps(bundler: SupportedBundler): DepsBundle;