Sorry if my explanations were not clear, As I'm using new angular 6 workspace feature, my main angular application contains multiple subProjects. Some are library (`ng generate library myLib1`) and some are applications (`ng generate application myApp1`). My applications (`myApp1`, `myApp2`, ...) depends on my libraries (`myLib1`, `myLib2` ...) which can depends them self on other libraries. In order to serve myApp1 (`ng serve myApp1`), I have to manually build all it's dependencies (`ng build myLib1`, ...). And every time I make a change in on of my lib, I have to rebuild all the libraries and applications that depends on it. I will have over 6 applications and 300 libraries to maintain so I'm looking for a wait to automate the whole process (and speed it up because each build take about 30 seconds, so If I need to rebuild 100 libraries it would be about 1 hour, and 3 hours if I want to rebuild everything.
-- You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussion" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
