I have an ember-cli application. It seems like ember-cli uses ember-data 1.0.0-beta.8.2a68c63a
at the moment by default. (at least thats loaded into the browser with ember serve
)
But i wanna use the current beta.9
, because the recent changes on DS.DateTransform
.
How can I update my ember-data version?
Its confusing because ember-data seems to be installed twice! Once with bower (but I have no dependency in my bower.json), and once with npm (but here the ember-cli-ember-data).
The installed version with bower seems to be 1.0.0-beta.10
(why 10? On emberjs.com only 9 is listed!), but the ember-cli-ember-data
npm modules has a ember-data 1.0.0-beta.8.2a68c63a
loaded.
A recent change on the github repo is telling me that is now deprecated, and I should update my package.json, but how, and why is ember-cli not doing that for me?
Thanks for help to install ember-data 1.0.0-beta.10
!