I have an Angular project. My global Angular CLI version is 14.2.1, and my local Angular CLI version is 13.0.4. Newest version of ngx-Toastr supports Angular CLI version 14.0.0 and and more, so it doesn't support Angular CLI 13.0.4 and it won't work with it. So I supposed, that early versions of ngx-Toastr can support Angular CLI 13.0.4, but I dunno what version really does. Also I dunno how to install ngx-Toastr certain version. I know how to install ngx-Toastr newest version:
npm install ngx-toastr --save
and also @angular/animations package:
npm install @angular/animations --save
But this line "npm install ngx-toastr --save" - how to set what version I want to install?
P. S.: I'm looking for the way where I won't need to upgrade my local Angular CLI version - Angular CLI version of my project.