Sam Tobia
Sam Tobia
You know, you probably have a point (I don't know the specifics). But it's been two years since the devs last commit : / I hope he responds. But I...
Thanks for responding ^__^ I was helping with a [project](https://github.com/Silk-GUI/Silk) a couple months ago. There each of the apps ran in child processes that connected to a main server which...
So looking into it, `util.js` looks like an easy fix but `kex.js` not as simple with regard to organization. I can create a repo that avoids the circular dependencies but...
https://github.com/mscdex/ssh2/blob/master/lib/client.js#L1089 Seems as though when `client.destroy()` is called it ensures that it's writable before destroying. I suppose you could just remove that to fix it. Is there a specific reason...
You could make a pull request : ) Open source can be helped by average peeps. Even something a bit slow can be useful for many people
https://github.com/oren/docker-nativescript/pull/5 Please download and test mine, hopefully your issues will be resoved
Here. What I was doing before was going through every file and checking what needed to be changed. There hadn't been much that node-gyp does that javascript can't do so...
@jonschlinkert `isGlob` looks close but I want to be able to validate direct files such as the example `isGlob('abc.js');`
In their examples, in some cases I would like to match a file directly https://github.com/micromatch/is-glob?tab=readme-ov-file#default-behavior ``` isGlob('abc.js'); isGlob('abc/def/ghi.js'); isGlob('foo.js'); isGlob('abc/@.js'); isGlob('abc/+.js'); isGlob('abc/?.js'); isGlob(); isGlob(null); //=> false ``` I may have...