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

13 lines (12 loc) 474 B
import { type Tree } from '@nx/devkit'; import { type NxRemixGeneratorSchema } from '../schema'; export interface NormalizedSchema extends NxRemixGeneratorSchema { projectName: string; projectRoot: string; importPath: string; e2eProjectName: string; e2eProjectRoot: string; parsedTags: string[]; isUsingTsSolutionConfig: boolean; } export declare function normalizeOptions(tree: Tree, options: NxRemixGeneratorSchema): Promise<NormalizedSchema>;