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
Right now, only the top level exports are found for package dependencies. We've discussed adding support for finding exports within subdirectories of package dependencies, but no code has yet been written in this area. See #344
I'm working on an ember project and I installed the addon
ember-simple-auth
. I create theapp/authenticators/application.js
with this :Devise
should be resolved asimport Devise from 'ember-simple-auth/authenticators/devise';
but it givesNo JS module to import for
Devise`.The file is located in
./node_modules/ember-simple-auth/addon/authenticators/devise.js
and the addon is a "devDependency".It works if I create an app somewhere in my app with :
Here is my
.importjs.js
file :There is nothing in logs.
Is there a bug or did I miss something?
The text was updated successfully, but these errors were encountered: