-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(misc): remove usages of @nx/cypress:cypress-project internally
Replace with call to `@nx/cypress:configuration`. The deprecated generator will be removed in Nx 18.
- Loading branch information
Showing
13 changed files
with
118 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
import { configurationGenerator } from './src/generators/configuration/configuration'; | ||
import { componentConfigurationGenerator } from './src/generators/component-configuration/component-configuration'; | ||
import { cypressProjectGenerator as _cypressProjectGenerator } from './src/generators/cypress-project/cypress-project'; | ||
|
||
export { configurationGenerator, componentConfigurationGenerator }; | ||
|
||
// Maintain backwards compatibility with the old names in case community plugins used them. | ||
// TODO(v18): Remove old name | ||
/** @deprecated Use `configurationGenerator` instead. */ | ||
export const cypressComponentConfiguration = componentConfigurationGenerator; | ||
|
||
export { configurationGenerator as cypressE2EConfigurationGenerator }; | ||
export { cypressProjectGenerator } from './src/generators/cypress-project/cypress-project'; | ||
// TODO(v18): Remove project generator | ||
/** @deprecated Add a new project and call `configurationGenerator` instead. */ | ||
export const cypressProjectGenerator = _cypressProjectGenerator; | ||
export { cypressInitGenerator } from './src/generators/init/init'; | ||
export { migrateCypressProject } from './src/generators/migrate-to-cypress-11/migrate-to-cypress-11'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.