I'd like to know if possible to separate a yeoman app by modules (like MEANJS generator) basically with the following structure:
- Module 1
- views
- controllers
- services
- css
- config
- module1.js
- Module 2
- views
- controllers
- services
- css
- config
- module1.js
Module 3
- etc
- etc
- same structure
App.js
For me is more convenient to do it this way and the official angular generator doesn't support that structure
is there any way to accomplish that with an existing yeoman generator?