@kcinternals/nx-plugin
Version:
nx plugins for kcws internal usage
32 lines (31 loc) • 785 B
JSON
{
"$schema": "https://json-schema.org/draft-07/schema",
"$id": "NodeLib",
"title": "To create node library in kcws monorepo",
"description": "To create node library in kcws monorepo",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "node-lib name",
"$default": {
"$source": "argv",
"index": 0
},
"minLength": 1,
"maxLength": 64,
"x-prompt": "What name would you like to use?"
},
"description": {
"type": "string",
"description": "node-lib description",
"$default": {
"$source": "argv",
"index": 1
},
"maxLength": 64,
"x-prompt": "What description would you like to use?"
}
},
"required": ["name", "description"]
}