I am trying to upgrade an Angular 7 application to Angular 8 using instructions from here. Everything went well until the last step:
ng update @angular/material
This updated Angular Material packages to 8.1.2, but also upgraded @angular/* packages to a rather strange an undesired version: ~9.0.0-next.0
This is problematic (I had to get rid of a non-essential dev dependency that requires Angular <= 8) as I do not want to go beyond version 8 which is the latest stable one.
How should I tackle this?