Aria Stewart
Aria Stewart
Binary distributions are tough because it's a cross product between node versions and operating systems.
That said, cmd.exe does in fact speak something similar to VT100.
Indeed, I can work around it, probably (but I was just giving the tool a spin and don't have a driving need to) This is on MacOS 10.9. There are...
Nope. I doubt it's with `async`: this usually happens with unbounded concurrency while recursively looking through the file system. `npm` had the same problem for a while, and it took...
It's just an arbitrary limit with a terrible error message, and completely handleable. Async isn't what's doing that though -- looking a little deeper, it looks like the unbounded concurrency...
(The same error can occur in any system with a large, deep tree. Whether it's third-party or not)
The fix npm uses is to load the [graceful-fs](https://www.npmjs.org/package/graceful-fs) module, which adds retries on EMFILE.
(See https://github.com/npm/npm/issues/3259)
Possibly, but I don't think isaacs wants to have glob go monkey-patching core. It's a tough call, since the fix is ugly and boundary-escaping. (He's also the author of `glob`,...