-
-
Notifications
You must be signed in to change notification settings - Fork 745
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Browserify or Node: Error: Cannot find module 'tether' #70
Comments
Related to #68 |
Getting this same error here too, but the package.json file does indeed specify the |
The version of |
@geekjuice still getting this with 0.7.2, so I must be doing something wrong. See something glaring in my package.json?
|
Could it be because you have your |
@geekjuice argh. sure was. thanks for helping with that. hopefully this helps someone else. |
No problem 😸 |
Thank you @davekiss that work for me ;) |
Trying to
var Tether = require('tether');
and build with browserify, produces this error:Error: Cannot find module 'tether'
In node_modules/tether/package.json, there is no "main" key which would indicate where to look for a file. This is why browserify/node can't find any file matching name "tether"
Here is the most minimal setup to reproduce the problem: https://github.com/kimmobrunfeldt/tether-browserify-bug
The text was updated successfully, but these errors were encountered: