Can i run the ionic v1 project when i have ionic CLI 3.0.0

ionic-framework, ionic2

Solution

Using the ionic-cli version 3.0 you should be able to work on all versions of ionic projects.

The new cli will create an ionic v3 app by default. If you want to create an ionic v1 app, you need to add `--v1`. But if you are starting with a new app, I strongly recommend going for v2+.

Depending on the version your ionic app has, you need to add some additional plugins:

`@ionic/cli-plugin-ionic-angular` – Ionic Angular project plugin that provides useful build tools and generators. (ionic v2+) `@ionic/cli-plugin-ionic1` – Ionic 1 project plugin that has functionality ported from the old CLI. `@ionic/cli-plugin-cordova` – Essential for an Ionic/Cordova app. `@ionic/cli-plugin-proxy` – For proxying CLI requests through a firewall.

I can't tell you if you need to link your app to the dashboard. If you are using the Ionic services (Push, View, etc), then it makes sense.

That being said, I have experienced quite a few "bugs" or inconsistent behaviour with the new cli, so you might need to downgrade if something doesn't work.

Problem

Now i have the latest version of ionic 3.0.0. My `ionic version`: `3.0.0`. And my `ionic info`: ``` global packages: @ionic/cli-utils : 1.0.0 Ionic CLI : 3.0.0 System: Node : v7.3.0 OS : macOS Sierra Xcode : Xcode 8.3.2 Build version 8E2002 ios-deploy : 1.9.0 ios-sim : 5.0.13 ``` Now i have two question in this. I searched , but not able to get the clear. If any one can answer. It will be helpful for many new bie like me. So, 1.Now i have ionic 3.0.0. Then if i want to open the project in ionic v2. i will give ` ionic start newapp blank --v2 or (--ts_)'. And i will use some updated plugin having in ionic 3.0.0. Does it will work out. or i need to create a seperate project for ionic version 3 ?? - Now i have old ionic 1 project that i am still working on. So once i update my ionic to`3.0.0`. Now what i done is : `ionic start newapp blank --v1` then i copied my old project `www` folder to this `newapp` and i replaced it. My question is. Still can i use angular js1 to code for this project also. And while make `ionic release` means when i want to put it in my app store. Does any problem will occur. Because i have create this project as `--v1`. If yes when i create a new project `ionic start newapp blank --v1` its asking me `Link this app to your Ionic Dashboard to use tools like Ionic View? y/N` : what should i need to do Please clarify me..thanks in advance

Original source