Add a `useProjectJson` option to project generators to allow users to opt in/out of generating the Nx configuration in a `project.json` file. ## Current Behavior ## Expected Behavior ## Related Issue(s) Fixes #
78 lines
2.8 KiB
JSON
78 lines
2.8 KiB
JSON
{
|
|
"name": "application",
|
|
"factory": "./src/generators/application/application#detoxApplicationGeneratorInternal",
|
|
"schema": {
|
|
"$schema": "https://json-schema.org/schema",
|
|
"title": "Create Detox Configuration for the workspace",
|
|
"description": "Create Detox Configuration for the workspace.",
|
|
"type": "object",
|
|
"properties": {
|
|
"appProject": {
|
|
"type": "string",
|
|
"description": "Name of the frontend project to be tested.",
|
|
"$default": { "$source": "projectName" },
|
|
"x-prompt": "What is the name of the frontend project to test?"
|
|
},
|
|
"e2eDirectory": {
|
|
"type": "string",
|
|
"description": "A directory where the project is placed relative current working directory (CWD).",
|
|
"$default": { "$source": "argv", "index": 0 },
|
|
"x-prompt": "Which directory do you want to create the E2E project in?"
|
|
},
|
|
"e2eName": {
|
|
"type": "string",
|
|
"description": "Name of the E2E Project."
|
|
},
|
|
"appName": {
|
|
"type": "string",
|
|
"description": "Name of the app to be tested if different from appProject"
|
|
},
|
|
"appDisplayName": {
|
|
"type": "string",
|
|
"description": "Display name of the app to be tested if different from appProject"
|
|
},
|
|
"framework": {
|
|
"type": "string",
|
|
"description": "App framework to test",
|
|
"enum": ["react-native", "expo"],
|
|
"x-prompt": "What app framework should detox test?"
|
|
},
|
|
"linter": {
|
|
"description": "The tool to use for running lint checks.",
|
|
"type": "string",
|
|
"enum": ["eslint", "none"],
|
|
"default": "eslint"
|
|
},
|
|
"js": {
|
|
"description": "Generate JavaScript files rather than TypeScript files.",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"skipFormat": {
|
|
"description": "Skip formatting files.",
|
|
"type": "boolean",
|
|
"default": false,
|
|
"x-priority": "internal"
|
|
},
|
|
"setParserOptionsProject": {
|
|
"type": "boolean",
|
|
"description": "Whether or not to configure the ESLint `parserOptions.project` option. We do not do this by default for lint performance reasons.",
|
|
"default": false
|
|
},
|
|
"useProjectJson": {
|
|
"type": "boolean",
|
|
"description": "Use a `project.json` configuration file instead of inlining the Nx configuration in the `package.json` file."
|
|
}
|
|
},
|
|
"required": ["e2eDirectory", "appProject", "framework"],
|
|
"presets": []
|
|
},
|
|
"aliases": ["app"],
|
|
"x-type": "application",
|
|
"description": "Create a Detox application.",
|
|
"implementation": "/packages/detox/src/generators/application/application#detoxApplicationGeneratorInternal.ts",
|
|
"hidden": false,
|
|
"path": "/packages/detox/src/generators/application/schema.json",
|
|
"type": "generator"
|
|
}
|