Cédric Belin
Cédric Belin
I think that I can answer as I'm the author of the `cdnjs` hosting request :) Only two files are needed: - `/src/css/ngGallery.css` - `/src/js/ngGallery.js`
It seems to be an OS issue: Windows has a strong limit on the maximum length of a path (see: [Maximum Path Length Limitation](https://msdn.microsoft.com/en-us/library/windows/desktop/aa365247.aspx)). So you should check that your...
It could also be an issue with the maximum length of a command : as for paths, Windows is very limited (8191 characters) comparing to Linux systems (usually 131072 characters).
@gingur In previous versions, this package called the Mocha API directly (EDIT: but it seems that this API has some severe issues). So, we hadn't any problem as the JavaScript...
Not the best solution, but personally, I ended up by no longer using the Gulp plugin and calling directly the Mocha executable. For example: https://github.com/cedx/which.js/blob/master/gulpfile.js#L59 The OS limitations still applies......
Why not simply use the [`url` core module](https://nodejs.org/api/url.html)? It supports Puny code thanks to the `url.domainToASCII()` function.
A bit off topic, but I'd like to point out that the way Firefox is detected is not sustainable. cf. https://github.com/crabbly/Print.js/blob/master/src/js/browser.js#L3 Why? Because `InstallTrigger` will be removed in a future...
No problem, it's not blocking. And thank you for your efforts 👍
@benmerckx Can you at least consider creating Git version tags? I'm not very comfortable using "insert git ref" releases...
Thanks a lot!