I'd need an other information please. I'm trying to use angular cli in order to achieve this new implementation. Previously I was using ts files directly from my repository in my application. I had lots of repository but I wasn't compiling then except in my application bundle. This way I just had to launch a watch build process in my applications(just a few), and when I made a change in one of my repository it was automatically detected. I know this was not ideal because it's better to compile independently each package. But it was the easiest way I found to be able to develop fast enough even if I'm alone. Now with angular cli it's commanded to build each package and use the build result in other packages. This seems the good way to proceed but now I don't see how to manage the whole build process.
For example I have a package A, which depends on a package B, which depends on a package C. Previously (with no intermediate build) I just needed to launch a watch on package A in order to detect changes in A, B or C. Now, if I make a change in C, I need to build C, then B, then A. How can I automate the whole process ? Of course this is a big simplification, I have over 300 packages with lots of dependencies (no loop). A change in some packages could affect over 100 packages. Thanks for any advice. -- 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.
