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
I used this addon with Ember 2.8 and everything worked. Today I tried to update to recent ember version and faced "Cannot find module app-name/routes/application" error in console. Spent few hours trying to debug it. I think it's caused by recent babel versions and new ember imports. Found a workaround: use requireNode for node modules. Example: fs = requireNode('fs') instead of fs = require('fs').
The text was updated successfully, but these errors were encountered:
I used this addon with Ember 2.8 and everything worked. Today I tried to update to recent ember version and faced "Cannot find module app-name/routes/application" error in console. Spent few hours trying to debug it. I think it's caused by recent babel versions and new ember imports. Found a workaround: use
requireNode
for node modules. Example:fs = requireNode('fs')
instead offs = require('fs')
.The text was updated successfully, but these errors were encountered: