Torathion

Results 27 comments of Torathion

I'm having the same issue when using Adguard, Ublock Origin, NoScript and Return Youtube Dislike on Firefox 137.0.2 Windows 10

We were already talking about it in #70 . `globby` uses [`ignore`](https://www.npmjs.com/package/ignore) for its `gitignore` option while also handling everything itself. But it's essentially: check for option -> find gitignore...

Can confirm too. I have a gigantic 1.20.1 modpack and near water the memory allocation quadruples and memory leaks until the game crashes.

Tbh, the `unmatch` fork could easily be justified by implementing the open pull requests of `picomatch`, namely typescript rewrite and esm support, while also pointing out the problem that the...

`globby` uses some insane and slow workarounds for the `gitignore` option, but it essentially uses [ignore](https://www.npmjs.com/package/ignore) under the hood. `ignore` warns about: "Pay ATTENTION that [minimatch](https://www.npmjs.org/package/minimatch) (which used by fstream-ignore)...

I don't think fdir still wants to support a node version from 6 years ago, even node 14 support was debated last year. I think this should be discussed in...

Also I have a question: Are found paths both processed in `filter` and `exclude`? If yes, there could be the possibility to cache processed paths, which would significantly improve the...

Yeah, I tried caching anywhere and the tests started to fail. Damn...

I've realized the way tinyglobby manages it's own options was copy pasted between `glob` and `globSync`, so I tried to centralize the logic. This also included some tiny restructurings and...

I found some more options handling logic in `processPatterns` that can be initially handled in `getOptions`. I also extended the `InternalProps` with `cwd` and `expandDirs` so we need to pass...