fast-glob icon indicating copy to clipboard operation
fast-glob copied to clipboard

:rocket: It's a very fast and efficient glob library for Node.js

Results 46 fast-glob issues
Sort by recently updated
recently updated
newest added

### Environment * OS Version: macOS 14.2.1 * Node.js Version: 20.10.0 Reference: https://github.com/sindresorhus/globby/issues/261 1. Can't stop glob from working when timed out or 1 file is found 2. Not easy...

Type: Enhancement

Hi thanks for this precious tool. From [the doc](https://github.com/mrmlnc/fast-glob#patterns) "Any correct pattern(s).", it's slightly unclear how passing an array of patterns work. For a file to match, does it have...

Type: Documentation

With v3.2.12 the glob `**/{!(*.d).mts,!(*.d).cts,*.{mjs,cjs,js}}` used to select these files: ```js [ ".cjs", ".cts", ".js", ".mjs", ".mts", "a.mjs", "ad.cts", "ad.mts", "a/.cjs", "a/.cts", "a/.js", "a/.mjs", "a/.mts", "a/a.mjs", "a/ad.cts", "a/ad.mts", ] ```...

Type: Bug

🧑‍🏭 Work in progress. ### What is the purpose of this pull request? The pull request addressed to #47 and adds a setting that allows including the pattern's base directory...

```sh mkdir a touch a/test node -p 'require("fast-glob").sync("?/test")' # prints [] node -p 'require("fast-glob").sync("{?,?}/test")' # prints [ 'a/test' ] ``` This seems to be caused by a bug in is-glob...

Type: Bug
upstream: glob-parent

### Environment * OS Version: Window 11 64bits * Node.js Version: 18.12.1 * fast-glob: 3.2.12 ### Actual behavior On Windows, listing the root directory of a disk like `D:/*` shows...

Type: Bug
upstream: glob-parent

Currently fast-glob silently omits any input files which do not exist from its output; this makes sense given that glob patterns need to be dropped in favor of the corresponding...

### What is the purpose of this pull request? I've been investigating fast-glob for usage in gulp via glob-stream and I noticed you had a `unique` setting, but not a...

streams: Rework stream tests to be more stream compliant ### What is the purpose of this pull request? I'm investigating fast-glob for usage in gulp via glob-stream and I noticed...

I know that this may not be an issue and its better to be asked in any stackoverflow-like media. I already [asked one](https://stackoverflow.com/questions/78333437/awilix-fails-to-autoload-modules-in-vitest-tests-with-typescript-setup). Also I opened an [issue](https://github.com/jeffijoe/awilix/issues/359) for Awilix...