99 lines
3.2 KiB
JSON
99 lines
3.2 KiB
JSON
{
|
|
"name": "application",
|
|
"factory": "./src/generators/application/application",
|
|
"schema": {
|
|
"$schema": "http://json-schema.org/schema",
|
|
"$id": "Application",
|
|
"title": "Application generator for React + rspack",
|
|
"type": "object",
|
|
"description": "React + Rspack application generator.",
|
|
"examples": [
|
|
{
|
|
"command": "nx g app myapp --directory=myorg",
|
|
"description": "Generate `apps/myorg/myapp` and `apps/myorg/myapp-e2e`"
|
|
}
|
|
],
|
|
"properties": {
|
|
"name": {
|
|
"description": "The name of the application.",
|
|
"type": "string",
|
|
"$default": { "$source": "argv", "index": 0 },
|
|
"x-prompt": "What name would you like to use for the application?",
|
|
"pattern": "^[a-zA-Z].*$",
|
|
"x-priority": "important"
|
|
},
|
|
"framework": {
|
|
"type": "string",
|
|
"description": "The framework to use for the application.",
|
|
"x-prompt": "What framework do you want to use when generating this application?",
|
|
"enum": ["none", "react", "web", "nest"],
|
|
"alias": ["uiFramework"],
|
|
"x-priority": "important",
|
|
"default": "react"
|
|
},
|
|
"style": {
|
|
"description": "The file extension to be used for style files.",
|
|
"type": "string",
|
|
"default": "css",
|
|
"alias": "s",
|
|
"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 ]"
|
|
},
|
|
{ "value": "none", "label": "None" }
|
|
]
|
|
}
|
|
},
|
|
"unitTestRunner": {
|
|
"type": "string",
|
|
"description": "The unit test runner to use.",
|
|
"enum": ["none", "jest"],
|
|
"default": "jest"
|
|
},
|
|
"e2eTestRunner": {
|
|
"type": "string",
|
|
"description": "The e2e test runner to use.",
|
|
"enum": ["none", "cypress"],
|
|
"default": "cypress"
|
|
},
|
|
"directory": {
|
|
"type": "string",
|
|
"description": "The directory to nest the app under."
|
|
},
|
|
"tags": {
|
|
"type": "string",
|
|
"description": "Add tags to the application (used for linting).",
|
|
"alias": "t"
|
|
},
|
|
"monorepo": {
|
|
"type": "boolean",
|
|
"description": "Creates an integrated monorepo.",
|
|
"aliases": ["integrated"]
|
|
},
|
|
"rootProject": { "type": "boolean", "x-priority": "internal" }
|
|
},
|
|
"required": ["name"],
|
|
"presets": []
|
|
},
|
|
"aliases": ["app"],
|
|
"x-type": "application",
|
|
"description": "React application generator.",
|
|
"implementation": "/packages/rspack/src/generators/application/application.ts",
|
|
"hidden": false,
|
|
"path": "/packages/rspack/src/generators/application/schema.json",
|
|
"type": "generator"
|
|
}
|