globby
Last updated
Was this helpful?
Last updated
Was this helpful?
User-friendly glob matching
Based on , but adds a bunch of useful features and a nicer API.
Promise API
Multiple patterns
Negated patterns: ['foo*', '!foobar']
Expands directories: dir
→ dir/**/*
Supports .gitignore
Returns a Promise<Array>
of matching paths.
Type: string
Array
Type: Object
expandDirectories
Type: boolean
Array
Object
Default: true
If set to true
, globby
will automatically glob directories for you. If you define an Array
it will only glob files that matches the patterns inside the Array
. You can also define an Object
with files
and extensions
like below:
Note that if you set this option to false
, you won't get back matched directories unless you set nodir: false
.
gitignore
Type: boolean
Default: false
Respect ignore patterns in .gitignore
files that apply to the globbed files.
Returns an Array
of matching paths.
Note that you should avoid running the same tasks multiple times as they contain a file system cache. Instead, run this method each time to ensure file system changes are taken into consideration.
Returns a boolean
of whether there are any special glob characters in the patterns
.
Note that the options affect the results. If noext: true
is set, then +(a|b)
will not be considered a magic pattern. If the pattern has a brace expansion, like a/{b/c,x/y}
, then that is considered magical, unless nobrace: true
is set.
Returns a Promise<(path: string) => boolean>
indicating whether a given path is ignored via a .gitignore
file.
Takes cwd?: string
and ignore?: string[]
as options. .gitignore
files matched by the ignore config are not used for the resulting filter function.
Returns a (path: string) => boolean
indicating whether a given path is ignored via a .gitignore
file.
Takes the same options as globby.gitignore
.
Just a quick overview.
*
matches any number of characters, but not /
?
matches a single character, but not /
**
matches any number of characters, including /
, as long as it's the only thing in a path part
{}
allows for a comma-separated list of "or" expressions
!
at the beginning of a pattern will negate the match
See supported minimatch
.
See the in addition to the ones below.
Returns an Array<Object>
in the format {pattern: string, opts: Object}
, which can be passed as arguments to . This is useful for other globbing-related packages.
This function is backed by
- Match against a list instead of the filesystem
- Simple wildcard matching
- Delete files and directories
- Make a directory and its parents if needed
MIT ©