So, I followed this guide on how to create an application with sub-projects. https://medium.com/disney-streaming/combining-multiple-angular-applications-into-a-single-one-e87d530d6527
I have the main-app project with sub-projects client-app, user-app, etc. The main-app contains a skeleton that loads the sub-projects as well as a shared module that each project imports.
Since these sub-projects can be built via "ng build client-app" and "ng build user-app", I was wondering would it be possible to only need to build the sub-project and not the entire main-app? I would still want to be able to build the main-app on occasion. But, if I only made changes to files in, let's say the client-app, I would only need to build just that project up the stack to production.