Upgrading Angular 7 to Latest Minor Version
Submitted by Kalen on Thu, 08/29/2019 - 16:30
Goal: Update your Angular packages to the latest minor version.
This process is simple, and can apply to any npm package. To do this you need to run npm install followed by the package name, then specify the versions you want to be between. In my case, I wanted to install the latest Angular 7 without upgrading to Angular 8. So for the version, I specify less than 8, and greater than or equal to 7.
Example:
syntax: npm install <package-name>@"<version>"