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

31 lines (30 loc) 828 B
{ "$schema": "https://json-schema.org/schema", "$id": "NxRemixTailwind", "title": "Add TailwindCSS to a Remix App", "description": "Setup tailwindcss for a given project.", "type": "object", "examples": [ { "command": "g setup-tailwind --project=myapp", "description": "Generate a TailwindCSS config for your Remix app" } ], "properties": { "project": { "type": "string", "description": "The name of the project to add tailwind to", "$default": { "$source": "projectName" }, "x-prompt": "What project would you like to add Tailwind to?" }, "skipFormat": { "type": "boolean", "description": "Skip formatting files after generator runs", "default": false, "x-priority": "internal" } }, "required": ["project"] }