diff --git a/docs/generated/packages/cypress/executors/cypress.json b/docs/generated/packages/cypress/executors/cypress.json index da88dc2909..2fbcae539b 100644 --- a/docs/generated/packages/cypress/executors/cypress.json +++ b/docs/generated/packages/cypress/executors/cypress.json @@ -73,7 +73,8 @@ }, "baseUrl": { "type": "string", - "description": "The address (with the port) which your application is running on." + "description": "The address (with the port) which your application is running on.", + "x-priority": "important" }, "browser": { "type": "string", @@ -90,7 +91,8 @@ "copyFiles": { "type": "string", "description": "A regex string that is used to choose what additional integration files to copy to the dist folder.", - "x-deprecated": "No longer used since cypress supports typescript out of the box. If specified, it will be ignored." + "x-deprecated": "No longer used since cypress supports typescript out of the box. If specified, it will be ignored.", + "x-priority": "internal" }, "ciBuildId": { "oneOf": [{ "type": "string" }, { "type": "number" }], diff --git a/docs/generated/packages/cypress/generators/cypress-project.json b/docs/generated/packages/cypress/generators/cypress-project.json index 724802d7d6..dfd3071fc4 100644 --- a/docs/generated/packages/cypress/generators/cypress-project.json +++ b/docs/generated/packages/cypress/generators/cypress-project.json @@ -12,7 +12,8 @@ "project": { "type": "string", "description": "The name of the frontend project to test.", - "$default": { "$source": "projectName" } + "$default": { "$source": "projectName" }, + "x-priority": "important" }, "baseUrl": { "type": "string", @@ -26,7 +27,8 @@ }, "directory": { "type": "string", - "description": "A directory where the project is placed." + "description": "A directory where the project is placed.", + "x-priority": "important" }, "linter": { "description": "The tool to use for running lint checks.", @@ -42,7 +44,8 @@ "skipFormat": { "description": "Skip formatting files.", "type": "boolean", - "default": false + "default": false, + "x-priority": "internal" }, "setParserOptionsProject": { "type": "boolean", @@ -51,18 +54,21 @@ }, "standaloneConfig": { "description": "Split the project configuration into `/project.json` rather than including it inside workspace.json.", - "type": "boolean" + "type": "boolean", + "x-priority": "internal" }, "skipPackageJson": { "type": "boolean", "default": false, - "description": "Do not add dependencies to `package.json`." + "description": "Do not add dependencies to `package.json`.", + "x-priority": "internal" }, "rootProject": { "description": "Create a application at the root of the workspace", "type": "boolean", "default": false, - "hidden": true + "hidden": true, + "x-priority": "internal" }, "bundler": { "description": "The Cypress bundler to use.", diff --git a/docs/generated/packages/cypress/generators/init.json b/docs/generated/packages/cypress/generators/init.json index d02b24999b..a8e2e37ca6 100644 --- a/docs/generated/packages/cypress/generators/init.json +++ b/docs/generated/packages/cypress/generators/init.json @@ -12,7 +12,8 @@ "skipPackageJson": { "type": "boolean", "default": false, - "description": "Do not add dependencies to `package.json`." + "description": "Do not add dependencies to `package.json`.", + "x-priority": "internal" } }, "presets": [] diff --git a/packages/cypress/src/executors/cypress/schema.json b/packages/cypress/src/executors/cypress/schema.json index 525be5f683..f7eff9da0c 100644 --- a/packages/cypress/src/executors/cypress/schema.json +++ b/packages/cypress/src/executors/cypress/schema.json @@ -73,7 +73,8 @@ }, "baseUrl": { "type": "string", - "description": "The address (with the port) which your application is running on." + "description": "The address (with the port) which your application is running on.", + "x-priority": "important" }, "browser": { "type": "string", @@ -90,7 +91,8 @@ "copyFiles": { "type": "string", "description": "A regex string that is used to choose what additional integration files to copy to the dist folder.", - "x-deprecated": "No longer used since cypress supports typescript out of the box. If specified, it will be ignored." + "x-deprecated": "No longer used since cypress supports typescript out of the box. If specified, it will be ignored.", + "x-priority": "internal" }, "ciBuildId": { "oneOf": [ diff --git a/packages/cypress/src/generators/convert-tslint-to-eslint/schema.json b/packages/cypress/src/generators/convert-tslint-to-eslint/schema.json index a17853c797..540955ad77 100644 --- a/packages/cypress/src/generators/convert-tslint-to-eslint/schema.json +++ b/packages/cypress/src/generators/convert-tslint-to-eslint/schema.json @@ -36,7 +36,8 @@ "skipFormat": { "type": "boolean", "description": "Skip formatting files.", - "default": false + "default": false, + "x-priority": "internal" } }, "required": ["project"] diff --git a/packages/cypress/src/generators/cypress-project/schema.json b/packages/cypress/src/generators/cypress-project/schema.json index 0d8340fe7d..4b088d6bef 100644 --- a/packages/cypress/src/generators/cypress-project/schema.json +++ b/packages/cypress/src/generators/cypress-project/schema.json @@ -11,7 +11,8 @@ "description": "The name of the frontend project to test.", "$default": { "$source": "projectName" - } + }, + "x-priority": "important" }, "baseUrl": { "type": "string", @@ -28,7 +29,8 @@ }, "directory": { "type": "string", - "description": "A directory where the project is placed." + "description": "A directory where the project is placed.", + "x-priority": "important" }, "linter": { "description": "The tool to use for running lint checks.", @@ -44,7 +46,8 @@ "skipFormat": { "description": "Skip formatting files.", "type": "boolean", - "default": false + "default": false, + "x-priority": "internal" }, "setParserOptionsProject": { "type": "boolean", @@ -53,18 +56,21 @@ }, "standaloneConfig": { "description": "Split the project configuration into `/project.json` rather than including it inside workspace.json.", - "type": "boolean" + "type": "boolean", + "x-priority": "internal" }, "skipPackageJson": { "type": "boolean", "default": false, - "description": "Do not add dependencies to `package.json`." + "description": "Do not add dependencies to `package.json`.", + "x-priority": "internal" }, "rootProject": { "description": "Create a application at the root of the workspace", "type": "boolean", "default": false, - "hidden": true + "hidden": true, + "x-priority": "internal" }, "bundler": { "description": "The Cypress bundler to use.", diff --git a/packages/cypress/src/generators/init/schema.json b/packages/cypress/src/generators/init/schema.json index 4c7050e6ae..34dd6e4573 100644 --- a/packages/cypress/src/generators/init/schema.json +++ b/packages/cypress/src/generators/init/schema.json @@ -9,7 +9,8 @@ "skipPackageJson": { "type": "boolean", "default": false, - "description": "Do not add dependencies to `package.json`." + "description": "Do not add dependencies to `package.json`.", + "x-priority": "internal" } } }