michaelficarra / CoffeeScriptRedux

:sweat: rewrite of the CoffeeScript compiler with proper compiler design principles and a focus on robustness and extensibility

Home Page:https://michaelficarra.github.com/CoffeeScriptRedux/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

optional dep failed, continuing optional dep failed, continuing

sylvain-hamel opened this issue · comments

When I npm install coffee-script-redux I always get this:

npm ERR! git clone git://github.com/michaelficarra/cscodegen.git Cloning into bare repository 'C:\Users\shamel\AppData\Roaming\npm-cache\_git-remotes\git-github-com-michaelficarra-cscodegen-git-c4b567f3'...
npm ERR! git clone git://github.com/michaelficarra/cscodegen.git
npm ERR! git clone git://github.com/michaelficarra/cscodegen.git fatal: unable to connect to github.com:
npm ERR! git clone git://github.com/michaelficarra/cscodegen.git github.com[0:192.30.252.131]: errno=No such file or directory
npm WARN optional dep failed, continuing cscodegen@git://github.com/michaelficarra/cscodegen.git#73f
d7202ac086c26f18c9d56f025b18b3c6f5383

I understand that it's an optional dependency but that causes warnings in my CI report. Could you please fix the dependency and update the package.

Thanks

fatal: unable to connect to github.com

It's on your side.

I see. It's a firewall issue here. You've declared the dependency using the git: protocol which requires a specific port to be open.

"cscodegen": "git://github.com/michaelficarra/cscodegen.git...

could you please change it to git+https:

"cscodegen": "git+https://github.com/michaelficarra/cscodegen.git...

to prevent using the git port.

Thanks a lot!

@michaelficarra, can you please update the package on the npm registry? Thanks.

This would be great to see updated in npm.

@michaelficarra, could you please update the npm registry?

@michaelficarra Same as the others, can you publish it please ?