Upgrade version of Ionic

0

I have projects in Ionic 1.x, and I will start a new project, however, I would like to update Ionic to its latest (stable) version.

My question is about compatibility, that is, I need to know if I'm going to have problems building "builds" with the previous version, because the project I've done before will still need maintenance and the like.

As far as I know, updating Ionic will update Cordova, CLI, and the like, and I'm afraid of that change.

Could someone help me?

    
asked by anonymous 26.07.2017 / 22:10

1 answer

1

You can upgrade without fear. I have several projects with ionic 1 and I started to use Ionic 2 some time.

What I've set up for your project is the information from the package.json file for your project. There is the version of ionic, cordova and plugins that you are using.

After updating Ionic you can still create projects with Ionic 1, just run the script

  

ionic start project_name blank --type ionic1

Good luck

    
28.07.2017 / 17:25