What is the proper way to update ionic 2 project to RC 2?
This help you. https://github.com/driftyco/ionic/blob/master/CHANGELOG.md
1 Like
Update the following dependencies in your package.json file:
"dependencies": {
"@angular/common": "2.1.1",
"@angular/compiler": "2.1.1",
"@angular/compiler-cli": "2.1.1",
"@angular/core": "2.1.1",
"@angular/forms": "2.1.1",
"@angular/http": "2.1.1",
"@angular/platform-browser": "2.1.1",
"@angular/platform-browser-dynamic": "2.1.1",
"@angular/platform-server": "2.1.1",
"@ionic/storage": "1.1.6",
"ionic-angular": "2.0.0-rc.2"
},
"devDependencies": {
"@ionic/app-scripts": "0.0.39"
}
2 Likes
Got it! Thanks!
I should’ve checked out changelog first
Can you tell me please if you got some problems after the update ?
thank you