Alexander Trakhimenok
Alexander Trakhimenok

Reputation: 6278

How to update Ionic2 to latest/master Angular2?

I'm developing an app using Ionic2 from github/master.

What would be the best way to update it to the latest angular2 (latest release or master) if I want to get latest fixes from there?

Upvotes: 2

Views: 1042

Answers (2)

dagale
dagale

Reputation: 21

If you want to install master version you can do it with:

npm install --save ionic-angular@nightly

Instead if you want to build your dist you can:

clone https://github.com/driftyco/ionic.git

cd ionic

npm install

gulp watch

For more info: https://github.com/driftyco/ionic/blob/master/scripts/README.md

Upvotes: 2

mhartington
mhartington

Reputation: 7025

It's best to keep everything in sync for the moment. We're working on our release process and are hoping to have nightly builds released soon so that you can just pull the latest and greatest very quickly.

Upvotes: 1

Related Questions