nx/packages/cypress/generators.json
Jason Jean 396ffc4636
feat(core): enable project crystal by default (#21403)
Co-authored-by: Katerina Skroumpelou <sk.katherine@gmail.com>
Co-authored-by: Jack Hsu <jack.hsu@gmail.com>
Co-authored-by: Colum Ferry <cferry09@gmail.com>
Co-authored-by: Leosvel Pérez Espinosa <leosvel.perez.espinosa@gmail.com>
Co-authored-by: Emily Xiong <xiongemi@gmail.com>
Co-authored-by: Nicholas Cunningham <ndcunningham@gmail.com>
2024-02-02 03:40:59 -05:00

38 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 `@nrwl/cypress` plugin.",
"aliases": ["ng-add"],
"hidden": true
},
"cypress-project": {
"factory": "./src/generators/cypress-project/cypress-project#cypressProjectGeneratorInternal",
"schema": "./src/generators/cypress-project/schema.json",
"description": "Add a Cypress E2E Project.",
"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"
}
}
}