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

26 lines (25 loc) 688 B
{ "$schema": "https://json-schema.org/schema", "$id": "NxRemixRouteStyle", "title": "Add style import to a route", "description": "Generate a style import and file for a given route.", "type": "object", "examples": [ { "description": "Generate a stylesheet at `myapp/app/styles/foo.css`", "command": "nx g style myapp/app/routes/foo.tsx" } ], "properties": { "path": { "type": "string", "description": "The file path to the route. Relative to the current working directory.", "$default": { "$source": "argv", "index": 0 }, "x-prompt": "What is the route file path?" } }, "required": ["path"] }