54 lines
1.7 KiB
JSON

{
"name": "redux",
"factory": "./src/generators/redux/redux#reduxGenerator",
"schema": {
"$schema": "http://json-schema.org/schema",
"cli": "nx",
"$id": "redux",
"title": "Create Redux state",
"description": "Create a Redux state slice for a React project.",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Redux slice name.",
"$default": { "$source": "argv", "index": 0 },
"x-priority": "important"
},
"project": {
"type": "string",
"description": "The name of the project to add the slice to. If it is an application, then the store configuration will be updated too.",
"alias": "p",
"$default": { "$source": "projectName" },
"x-prompt": "What is the name of the project for this slice?",
"x-priority": "important"
},
"directory": {
"type": "string",
"alias": "dir",
"default": "",
"description": "The name of the folder used to contain/group the generated Redux files.",
"x-priority": "important"
},
"appProject": {
"type": "string",
"description": "The application project to add the slice to.",
"alias": "a"
},
"js": {
"type": "boolean",
"description": "Generate JavaScript files rather than TypeScript files.",
"default": false
}
},
"required": ["name"],
"presets": []
},
"description": "Create a Redux slice for a project.",
"aliases": ["slice"],
"implementation": "/packages/react/src/generators/redux/redux#reduxGenerator.ts",
"hidden": false,
"path": "/packages/react/src/generators/redux/schema.json",
"type": "generator"
}