-
Notifications
You must be signed in to change notification settings - Fork 27
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
too many redirects #17
Comments
I found a solution to the problem, but I'm not 100% sure that it's the best one. Do you guys want me to open a pull requests? Thanks again :) |
@kutomer: Is it related to your project or generally to this repository? I dont have any of these errors. // webpack config
{
...,
externals: {
net: '1',
dns: '1'
},
...
} It overrides requiring of these libraries with Try if this problem occurs on fresh checkouted repository and then we can solve it there. |
The error reproduce on a fresh checked out repository, so there is nothing to do with my code. I guess that it is an environment issue but I'm really not sure about that. |
Maybe some new versions of npm packages, or npm v3. I migrate to it recently and dont have time to test all projects with that. I know it should not affect it, but who knows. |
maybe so, I will try to update some of the packages and check it out. |
Well, Things got even worse, I get new Error when running "gulp": SyntaxError: Unexpected token import _I tried to undo all my upgrades and upgraded only the dependencies shown in _bold* and got the same error. |
This last problem is with update babel to version 6. There is whole new configuration for babel and it need much more work to be done than just update it. I will take look sometime at it. Babel 6 is now stable, support all transformers and is faster and better configurable. |
Hello,
When I execute "gulp" I get the following errors:
ERROR in ./~/ws/lib/WebSocketServer.js Module not found: Error: Cannot resolve module 'tls' in /home/.../webpack-chrome-extension/node_modules/ws/lib
ERROR in ./~/options/lib/options.js Module not found: Error: Cannot resolve module 'fs' in /home/.../webpack-chrome-extension/node_modules/options/lib
But then it says:
webpack: bundle is now VALID.
And then when I open the background page I get:
Failed to load resource: net::ERR_TOO_MANY_REDIRECTS
*At first I got Insecure connection error but I found an answer for it in the issues.
I'm using Ubuntu 14.04 and Chrome 47
b.t.w when I execute "gulp -p" I'm getting some errors but the extension is working.
Thanks!
The text was updated successfully, but these errors were encountered: