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
This codemod currently uses analyzeEmberObject exported from ember-codemods-telemetry-helpers. It turns out that the analyzeEmberObject implementation is very specific to the native class codemod that it was extracted from, and thus it only recognizes EmberObject and its descendants when determining the type property:
This codemod currently uses
analyzeEmberObject
exported fromember-codemods-telemetry-helpers
. It turns out that theanalyzeEmberObject
implementation is very specific to the native class codemod that it was extracted from, and thus it only recognizesEmberObject
and its descendants when determining thetype
property:https://github.com/ember-codemods/ember-codemods-telemetry-helpers/blob/cf2bb9be57bd5cc454c73c61217db64d76c0dbed/lib/gather/analyze-ember-object.js#L158-L171
To fix this, we should replace
analyzeEmberObject
with our own implementation.This is probably the root cause for:
#101
It might be related to:
#43
The text was updated successfully, but these errors were encountered: