How to upgrade/update to angular 6 ?
By using the angular cli we can upgrade to angular 6, below are the steps to upgrade
Update the NodeJS version to 8.9+
Update Angular cli to latest version
npm uninstall -g @angular/cli
npm cache verify
npm cache clean
npm install -g @angular/cli@next
npm...