You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 19, 2019. It is now read-only.
Hey,
The good way to approach this generator, as @grabbou said, is to make it more composable. That means to divide it into base generator and sub-generators.
Base generator would include stuff that every project has (readme, gitignore, license etc.) and option to decide if it's frontend, backend or fullstack project, installing modules accordingly.
Next, we'll give an option to extend base gene, prompting user to chose what libs to include - example: testing utils (jest/mocha), static typing (flow/typescript) etc.
That's my vision of how we could tackle it. Opinions are welcome :)