-
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.
fix(react): app generator should handle crystal workspaces
- Loading branch information
Showing
15 changed files
with
82 additions
and
401 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 was deleted.
Oops, something went wrong.
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,15 +1,14 @@ | ||
export * from './src/generators/action/action.impl'; | ||
export * from './src/generators/application/application.impl'; | ||
export * from './src/generators/cypress-component-configuration/cypress-component-configuration.impl'; | ||
export * from './src/generators/cypress/cypress.impl'; | ||
export * from './src/generators/error-boundary/error-boundary.impl'; | ||
export * from './src/generators/library/library.impl'; | ||
export * from './src/generators/loader/loader.impl'; | ||
export * from './src/generators/meta/meta.impl'; | ||
export * from './src/generators/preset/preset.impl'; | ||
export * from './src/generators/resource-route/resource-route.impl'; | ||
export * from './src/generators/route/route.impl'; | ||
export * from './src/generators/setup-tailwind/setup-tailwind.impl'; | ||
export * from './src/generators/storybook-configuration/storybook-configuration.impl'; | ||
export * from './src/generators/style/style.impl'; | ||
export * from './src/generators/init/init'; | ||
export { default as actionGenerator } from './src/generators/action/action.impl'; | ||
export { default as applicationGenerator } from './src/generators/application/application.impl'; | ||
export { default as cypressComponentConfigurationGenerator } from './src/generators/cypress-component-configuration/cypress-component-configuration.impl'; | ||
export { default as errorBoundaryGenerator } from './src/generators/error-boundary/error-boundary.impl'; | ||
export { default as libraryGenerator } from './src/generators/library/library.impl'; | ||
export { default as loaderGenerator } from './src/generators/loader/loader.impl'; | ||
export { default as metaGenerator } from './src/generators/meta/meta.impl'; | ||
export { default as presetGenerator } from './src/generators/preset/preset.impl'; | ||
export { default as resourceRouteGenerator } from './src/generators/resource-route/resource-route.impl'; | ||
export { default as routeGenerator } from './src/generators/route/route.impl'; | ||
export { default as setupTailwindGenerator } from './src/generators/setup-tailwind/setup-tailwind.impl'; | ||
export { default as storybookConfigurationGenerator } from './src/generators/storybook-configuration/storybook-configuration.impl'; | ||
export { default as styleGenerator } from './src/generators/style/style.impl'; | ||
export { default as initGenerator } from './src/generators/init/init'; |
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
42 changes: 0 additions & 42 deletions
42
packages/remix/src/generators/cypress/cypress.impl.spec.ts
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.