ember-cli 2.2.0-beta.1 moved ember-data out of bower.json and into package.json handled by npm. How do I specify I want to use the canary version of ember-data in package.json?

up vote 0 down vote accepted

You can use the git url dependency feature of package.json. It should look something like:

// package.json
...
"devDependencies": {
  "ember-data": "emberjs/data#master"
}

Your Answer

 

By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Not the answer you're looking for? Browse other questions tagged or ask your own question.