I had an asp.net core app on Angular 10.2.4, decided to upgrade to 11.
Ran: ng update @angular/core@11 @angular/cli@11 it failed complaining of devkit. Uninstalled devkit, upgraded angular to 11.2.14 OK.
Now am trying to install devkit back.
npm install @angular-devkit/build-angular --save-dev- fail - seems try to install v12 and depends on cli 12 also.npm install @angular-devkit/build-angular@11.2 --save-devornpm install @angular-devkit/build-angular@11 --save-dev- fail - No matching version found for @angular-devkit/build-angular@xx
What's the right version of devkit for Angular 11? What's the general idea on how to find/infer/guess correct version of a package for a certain Angular version?