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
Whereas import attr from "ember-data/attr" is supported, import myAttr from "ember-data/attr" is not (yet). It will be ignored by the codemod.
updateExistingLiteralPaths function should be updated to support it.
Note that aliased named import are supported: import { hasMany as many } from "ember-data/relationships" is properly turned into import { hasMany as many } from "@ember-data/model".
Whereas
import attr from "ember-data/attr"
is supported,import myAttr from "ember-data/attr"
is not (yet). It will be ignored by the codemod.updateExistingLiteralPaths
function should be updated to support it.Note that aliased named import are supported:
import { hasMany as many } from "ember-data/relationships"
is properly turned intoimport { hasMany as many } from "@ember-data/model"
.Related discussion: #21 (comment)
The text was updated successfully, but these errors were encountered: