@oasisdigital/ng-doc-portal-plugin
Version:
Nx plugin for adding the ng-doc-portal system to your nx workspace
32 lines (31 loc) • 820 B
JSON
{
"$schema": "http://json-schema.org/schema",
"$id": "doc-page",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Doc Page name",
"$default": {
"$source": "argv",
"index": 0
},
"x-prompt": "What Doc Page name would you like to use?"
},
"directory": {
"type": "string",
"description": "Directory to generate files in",
"$default": {
"$source": "argv",
"index": 2
},
"x-prompt": "What Directory path would you like to use?"
},
"path": {
"type": "string",
"description": "The Doc Portal Navigation Path of the Doc Page.",
"x-prompt": "What is the Doc Portal Navigation Path for this Doc Page?(ex:General/Folder/Folder)"
}
},
"required": ["name"]
}