tinyglobby
Advanced tools
Changelog
The library no longer sets dot
to true
internally by default. It now defaults it to false
, just like globby
and fast-glob
.
You can configure this by using the new dot
option.
patterns
option as the first argument to better approach a drop-in globby
replacementawait glob(['src/*.ts'], { ignore: ['_secret'] });
// you can still specify it in the options object
await glob({ patterns: ['src/*.ts'], ignore: ['_secret'] });
cwd
dot
optiondeep
optiononlyFiles
option