Deprecation warnings with Ember 3.27
boris-petrov opened this issue · 4 comments
boris-petrov commented
jherdman commented
This is currently biting ember-metrics too. We're looking into refactor out our usages of @classic
, but it'd be nice to be able to buy a little time.
rwjblue commented
I think you can add something like:
const _Ember = typeof require === 'function' && typeof require.has === 'function' && require.has('ember') ? require('ember') : Ember;
Then update those usages to use _Ember
. I think most/all of those things are still available on the ember
module's export just fine...
lucacorti commented
This is an issue for at least ember-metrics
on 4.x which depends on e-c-d
.
boris-petrov commented
This has been fixed by #89.