Thanks for the info about these changes! Recently I upgraded my CLI from 1.x to 2.x because I want to develop both Ionic 1 and Ionic 2 apps and the Ionic 2 CLI is backwards compatible with Ionic 1.
I ran into a few (minor) issues which however could all be worked around:
I installed ionic 2 beta-32, beta 33 did not work for me at least with my nodejs version (v.4.2.6):
I use gulp in my build quite a lot (for SASS and for minifying etc) but with the Ionic 2 CLI I’ve stopped including the gulp “default” task in my ionic.project, I keep only the “watch” task.
So, in my ionic.project. I replace:
gulpStartupTasks": ["default", "watch"]
with:
gulpStartupTasks": ["watch"]
I then create a shell script to run ‘ionic serve’ for instance like this:
To fix this, I modified my gulp.js file to include/require the karma nodejs module conditionally (only when it’s necessary: when running tests through karma).
So there’s nothing that can be worked around but figuring out some of the issues took quite some effort. Most of it is probably related to my specific project setup however.
And I ended up choosing nodejs v.4.2.6, other versions (both older and newer) caused various issues.
(and it almost goes without saying, do yourself a favor and use “nvm” to manage your node installations)
I am in a similar situation to your’s except I am still on Framework 1.2 (gotta change that soon–first attempt was not smooth so backed out—gotta love Time Machine ). I assume that you went ahead and updated your ionic with the “npm install -g ionic” command and then re-added the crosswalk-webview per @mhartington suggestion. Did you discover anything else? I use Cloud Deploy and Push and am on a tight deadline and don’t have the time to overcome new discoveries. Anything you, Mike, or anyone else can add would be appreciated. Thanks!