Search code examples
ember.jsember-cli

Ember-CLI 'Ember Update' command


I'm an ember noob going through the ember-cli 101 book. To date, I've been using the upgrade worklow on the ember-cli website, here.

Messing around with the ember-cli help, in terminal, I came across an 'ember update' command that says it updates to the newest ember-cli version.

Is there a difference between the two? Is the 'ember update' command going to be what to use in the future and just isn't fully implemented yet?

Thanks in advance!

UPDATE: After some googleFu, this is all I could find about 'ember update' (bottom of page)


Solution

  • You have to remove old version then install new ember cli version ex:

    1. npm uninstall -g ember-cli -- Remove old global ember-cli
    2. npm cache clean -- Clear NPM cache
    3. bower cache clean -- Clear Bower cache
    4. npm install -g ember-cli@2.8.0 -- Install new global ember-cli

    Visit