picomatch icon indicating copy to clipboard operation
picomatch copied to clipboard

Blazing fast and accurate glob matcher written JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular e...

Results 53 picomatch issues
Sort by recently updated
recently updated
newest added

``` picomatch = require('picomatch') picomatch.isMatch('a.j.js', '*.*(j).js', { noextglob: true }) => true picomatch.isMatch('a.j.js', '*.*(j).js', { noextglob: false}) => true ``` ``` picomatch = require('picomatch') picomatch.isMatch('z', '*(z)', { noextglob: true })...

i wish to have a build that don't have anything that are specific to windows... i don't care about windows. I'm only going to use it on unix/browser so i...

https://github.com/micromatch/picomatch/blob/5467a5a9638472610de4f30709991b9a56bb5613/bench/package.json#L11-L14 your bench test are running agains a pretty old minimatch version. there is a newer version out there now (5.1.9) could you update the benchmark result?

- All code converted to ESM base and then uses **tsup** to convert to minimal CJS and ESM exports. - All tests pass - Pointed benchmark to CJS output with...

The type of the `prepend` option is boolean, but the documentation implies that it should be a string.

thanks for this library Im currently using this library with my personal project full es code, it would be good if theres es format if this library.

Hi community, I just encountered the following `pm.isMatch("CON.md", "!(**/*.md)",{dot:true}) ? "match" : "no match"` - > returns match `pm.isMatch("CON.md", "!(*.md)",{dot:true}) ? "match" : "no match"` - > returns no match...

The `cwd` option is specified in the docs [here](https://github.com/micromatch/picomatch#:~:text=Current%20working%20directory). ![image](https://user-images.githubusercontent.com/2544493/158602405-cfbb82ce-0904-40dd-b603-0d0674580380.png) However, It doesn't appear to be used anywhere in the picomatch source code. See this github text search. https://github.com/micromatch/picomatch/search?q=cwd Here...

This is the documented behavior of micromatch. Fixes #89

The `basename` option description reads, with my emphasis: > If set, then patterns **without slashes** will be matched against the basename of the path if it contains slashes. For example,...