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 addon has a src/ folder (which it uses for "node land things"), but as of ember-cli@3.2 (current master version of ember-cli) an addon having a src/ folder means it is opting in to Module Unification.
There are a few options that I've listed here, but there definitely may be more that I've not thought of yet:
Move the src/ files to some other directory.
Change the detection that ember-cli does so that this assumption that src/ existing means the addon is using the new module layout is less likely to be breaking for addons (like this one) that already use the src/ folder.
Update this addon to implement isModuleUnification method that always returns false.
Override the this.treePaths.src to point to another folder (other than src/).
I'm mostly only filing this issue because this addon is incompatible with ember-cli#master branch, and I'd like to figure out a nice path forward before users start getting trolled...
The text was updated successfully, but these errors were encountered:
This addon has a
src/
folder (which it uses for "node land things"), but as of ember-cli@3.2 (current master version of ember-cli) an addon having asrc/
folder means it is opting in to Module Unification.There are a few options that I've listed here, but there definitely may be more that I've not thought of yet:
src/
existing means the addon is using the new module layout is less likely to be breaking for addons (like this one) that already use thesrc/
folder.isModuleUnification
method that always returnsfalse
.this.treePaths.src
to point to another folder (other thansrc/
).I'm mostly only filing this issue because this addon is incompatible with ember-cli#master branch, and I'd like to figure out a nice path forward before users start getting trolled...
The text was updated successfully, but these errors were encountered: