@yolkai/nx-workspace
Version:
49 lines (48 loc) • 1.25 kB
JSON
{
"$schema": "http://json-schema.org/schema",
"id": "NxWorkspacePreset",
"title": "Creates applications in a new workspace",
"type": "object",
"properties": {
"preset": {
"description": "The name of the preset.",
"type": "string"
},
"name": {
"description": "The name of the application.",
"type": "string"
},
"npmScope": {
"description": "Npm scope for importing libs.",
"type": "string"
},
"cli": {
"description": "CLI powering the workspace.",
"type": "string"
},
"style": {
"description": "The file extension to be used for style files.",
"type": "string",
"default": "css",
"x-prompt": {
"message": "Which stylesheet format would you like to use?",
"type": "list",
"items": [
{ "value": "css", "label": "CSS" },
{
"value": "scss",
"label": "SASS(.scss) [ http://sass-lang.com ]"
},
{
"value": "styl",
"label": "Stylus(.styl)[ http://stylus-lang.com ]"
},
{
"value": "less",
"label": "LESS [ http://lesscss.org ]"
}
]
}
}
}
}