Why split api and impl module in all feature modules? Is there a better solution?
#2009
Jaehwa-Noh
started this conversation in
Ideas
Replies: 2 comments 7 replies
This will create a bottleneck that we want to avoid, especially in large multi-module codebases. Specifically, every time you will change/add/remove a route, almost the entire project will get invalidated because all features depend on this central Having api/impl split allows us to only invalidate impacted modules. |
3 replies
|
Another suggestions, the reason of split |
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
It is as though generating boilerplate code in all
feature modules.I suggest that making a
core:routemodule that contains all route data classes, and allfeature moduleshave dependency tocore:routemodule.I think this approach doesn't need to split
apiandimplmodule in feature modules.What do you think about my approach?
@dturner and everyone in here?
All reactions