I have feature modules in my angular application and am looking for a way to create builds that only include certain features.
For example:
/app
|
|--/components
|
|--/core
|
|--/dataservices
|
|--/features
|
|--/customers
|
|--/orders
So say I wanted to produce a build that only included the orders module, are there any tools out there that can help in achieving this?
I am using gulp, and wondered about being able to configure a gulp task that took in some arguments where you specify what modules to include and then use file globbing patterns or similar to target certain folders/files in the build.
Can anyone offer any suggestions\approaches?
Thanks