Fast, minimal glob matcher for node.js. Similar to micromatch, minimatch and multimatch, but without support for extended globs (extglobs), posix brackets or braces, and with complete Bash 4.3 wildcard support: ("*", "**", and "?").
Basically I would like to include everything (**) minus the subdir but include subdir/file2.txt. For my use case ** is very important. Is there any way I am mixing up the order or miss something? Thank you!
Hi everyone, I am using nanomatch with the following pattern:
Basically I would like to include everything (
**
) minus thesubdir
but includesubdir/file2.txt
. For my use case**
is very important. Is there any way I am mixing up the order or miss something? Thank you!