@ngrx/schematics
Version:
NgRx Schematics for Angular
57 lines (56 loc) • 1.47 kB
JSON
{
"$schema": "http://json-schema.org/schema",
"$id": "SchematicsNgRxAction",
"title": "NgRx Action Options Schema",
"type": "object",
"properties": {
"name": {
"description": "The name of the action.",
"type": "string",
"$default": {
"$source": "argv",
"index": 0
},
"x-prompt": "What should be the name of the action?"
},
"prefix": {
"description": "The prefix of the action.",
"type": "string",
"default": "load",
"x-prompt": "What should be the prefix of the action?"
},
"path": {
"type": "string",
"format": "path",
"description": "The path to create the component.",
"visible": false,
"$default": {
"$source": "workingDirectory"
}
},
"project": {
"type": "string",
"description": "The name of the project.",
"aliases": ["p"]
},
"flat": {
"type": "boolean",
"default": true,
"description": "Flag to indicate if a dir is created."
},
"group": {
"type": "boolean",
"default": false,
"description": "Group actions file within 'actions' folder",
"aliases": ["g"]
},
"api": {
"type": "boolean",
"default": false,
"description": "Specifies if api success and failure actions should be generated.",
"aliases": ["a"],
"x-prompt": "Should we generate success and failure actions?"
}
},
"required": []
}