I noticed converting an old app to embroider that if I have different versions of addons just end up breaking in webpack, and I was wondering if this is expected? Whereas Ember would merge both into tree and the last one it of a file sees "wins".
I assume it is (much like how ember-auto-import complains when there's two differing versions), but just want to make sure I'm not missing anything (like somehow have it gracefully have multiple versions).
Example ember-fetch I get the unclear message:
Module not found: Error: Can't resolve './ajax' in '$TMPDIR/embroider/cd3b7d/copies/my-app/node_modules/ember-fetch'
I know this is from the fact that in newer ember-fetch this file doesn't exist.
Had samething with ember-cli-uuid:
Can't resolve './mixins/adapters/uuid' in '$TMPDIR/embroider/cd3b7d/copies/my-app/node_modules/ember-cli-uuid'
Which I fixed by making sure there was only one version of that package