February 2016
Beginner to intermediate
308 pages
5h 46m
English
Ember CLI is constantly being upgraded and every six weeks Ember.js has another release. It is important to keep your build tools and versions up to date. In this recipe we'll look at the best way of doing this.
To upgrade your Ember CLI version, you must perform the following steps:
ember-cli:
$ npm uninstall –g ember-cli
$ npm cache clean
$ bower cache clean
ember-cli:
$ npm install –g ember-cli
X.X.X:
$ npm install –g ember-cli@X.X.X
In some situations, you might want to take an existing project and update it to the ...
Read now
Unlock full access