You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
David Zulaica edited this page Aug 17, 2015
·
1 revision
Maintaining Multiple Versions of Ember
To use a specific version of ember(-cli/-data) per application without affecting global:
Go into the specific directory for the application you’re developing.
npm install ember-cli --save Do not use the -g flag as that will affect your global installation of ember.
Verify that the correct version is installed “locally” in each ember app directory (Discuss, Analytics, any addons, etc) by running ember --version.
When running ember commands for an application that requires the newer/local version of ember-cli, you’ll want to run against the local with ./node_modules/.bin/ember <command>.