I have ionic2 rc1 on my MacBook now, but my client wants rc0. How can I install and manage 2 versions of ionic at the same MacBook?
Asked
Active
Viewed 1,111 times
1
-
If you want to `npm install` a specific version, see http://stackoverflow.com/q/15890958/3001761 – jonrsharpe Oct 31 '16 at 07:52
-
so in my case is it `npm install ionic@2.0rc0`? – sooon Oct 31 '16 at 08:05
1 Answers
0
All you need is to update the package.json with the Ionic version you need, in your case:
ionic-angular": "2.0.0-rc.0"
The npm install is for the global Ionic CLI and App/Scripts

Franco
- 848
- 1
- 12
- 24
-
Just for clarification, each project has its own package.json, you can have the latest Ionic2 Cli installed globally and still use whichever versión your client wants. – Franco Nov 01 '16 at 03:57