@nx/remix
Version:
19 lines (18 loc) • 483 B
JSON
{
"$schema": "https://json-schema.org/schema",
"$id": "action",
"type": "object",
"description": "Generate an action for a given route.",
"properties": {
"path": {
"type": "string",
"description": "The route path or path to the filename of the route.",
"$default": {
"$source": "argv",
"index": 0
},
"x-prompt": "What is the path of the route? (e.g. 'apps/demo/app/routes/foo/bar.tsx')"
}
},
"required": ["path"]
}