Home > Blockchain >  Update ionic/angular from 5.0.0 to 5.7.0 Potassium
Update ionic/angular from 5.0.0 to 5.7.0 Potassium

Time:09-17

Currently my Ionic is running on "@ionic/angular": "^5.0.0". ionic -v is 6.17.1. I can't find a way in the documents to update my ionic to 5.7.0 Potassium.

The following did not work:

npm install -g @ionic/cli@latest

CodePudding user response:

try npm update in your project root to update all dependencies.

if you just want to update ionic/angular or just a single module.

try: npm i @ionic/angular@latest

  • Related