1

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?

jonrsharpe
  • 115,751
  • 26
  • 228
  • 437
sooon
  • 4,718
  • 8
  • 63
  • 116

1 Answers1

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