We forgot to rename these in the init generator descriptions. This affects tutorials since we've been including the terminal output with the wrong scope. ## Current Behavior <!-- This is the behavior we have today --> ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
37 lines
1.6 KiB
JSON
37 lines
1.6 KiB
JSON
{
|
|
"name": "Nx Cypress",
|
|
"version": "0.1",
|
|
"generators": {
|
|
"init": {
|
|
"factory": "./src/generators/init/init#cypressInitGeneratorInternal",
|
|
"schema": "./src/generators/init/schema.json",
|
|
"description": "Initialize the `@nx/cypress` plugin.",
|
|
"aliases": ["ng-add"],
|
|
"hidden": true
|
|
},
|
|
"configuration": {
|
|
"aliases": ["cypress-e2e-configuration", "e2e", "e2e-config"],
|
|
"factory": "./src/generators/configuration/configuration#configurationGeneratorInternal",
|
|
"schema": "./src/generators/configuration/schema.json",
|
|
"description": "Add a Cypress E2E Configuration to an existing project."
|
|
},
|
|
"component-configuration": {
|
|
"aliases": ["cypress-component-configuration"],
|
|
"factory": "./src/generators/component-configuration/component-configuration#componentConfigurationGeneratorInternal",
|
|
"schema": "./src/generators/component-configuration/schema.json",
|
|
"description": "Set up Cypress Component Test for a project",
|
|
"hidden": true
|
|
},
|
|
"migrate-to-cypress-11": {
|
|
"factory": "./src/generators/migrate-to-cypress-11/migrate-to-cypress-11#migrateCypressProject",
|
|
"schema": "./src/generators/migrate-to-cypress-11/schema.json",
|
|
"description": "Migrate existing Cypress e2e projects to Cypress v11"
|
|
},
|
|
"convert-to-inferred": {
|
|
"factory": "./src/generators/convert-to-inferred/convert-to-inferred",
|
|
"schema": "./src/generators/convert-to-inferred/schema.json",
|
|
"description": "Convert existing Cypress project(s) using `@nx/cypress:cypress` executor to use `@nx/cypress/plugin`."
|
|
}
|
|
}
|
|
}
|