I've an Angular project in 7.1. I have also created 2 angular libraries which are used in my project. I'm upgrading my project from 7.1 to 8.2. I ran the following command for the upgrade which upgraded my angular project.
ng update @angular/cli@8 @angular/core@8
But it didn't upgrade my library project. How can I upgrade the angular version in my library project? I can manually update the package version in package.json in my library project but then I would need to do all the changes (eg, adding static for viewChild) manually.
Looking forward to some expert advice.