UNPKG

@nx/remix

Version:

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

9 lines 513 B
import { type ProjectGraph, type ProjectGraphProjectNode } from '@nx/devkit'; /** * Generates an array of paths to watch based on the project dependencies. * * @param {string} dirname The absolute path to the Remix project, typically `__dirname`. */ export declare function createWatchPaths(dirname: string): Promise<string[]>; export declare function getRelativeDependencyPaths(project: ProjectGraphProjectNode, deps: string[], graph: ProjectGraph): string[]; //# sourceMappingURL=create-watch-paths.d.ts.map