Ionic v3.0.1 was released on Github, but I am not able to install it.
npm install -g ionic β gives you 2.2
npm install -g ionic@beta β gives you 3.0.0-beta.5
and npm does not like ionic@3.0.1
Ionic versioning is a bit confusing. The CLI version typically isnβt particularly relevant; youβre looking for the framework. Simply modifying your package.json
to look like the one in the 3.0.0 CHANGELOG entry (with the obvious exception of bumping ionic-angular
itself to 3.0.1) and running npm i
should do what you want.
4 Likes
Thanks - that helped.