├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .github ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── benchmark.yml │ ├── codeql.yml │ └── main.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── __snapshots__ ├── absolute.e2e.js ├── base-name-match.e2e.js ├── case-sensitive-match.e2e.js ├── deep.e2e.js ├── dot.e2e.js ├── errors.e2e.js ├── ignore.e2e.js ├── mark-directories.e2e.js ├── only-directories.e2e.js ├── only-files.e2e.js ├── regular.e2e.js ├── root.e2e.js ├── static.e2e.js └── unique.e2e.js ├── eslint.config.mjs ├── fixtures ├── .directory │ └── file.md ├── .file ├── file.md ├── first │ ├── file.md │ └── nested │ │ ├── directory │ │ ├── file.json │ │ └── file.md │ │ └── file.md ├── second │ ├── file.md │ └── nested │ │ ├── directory │ │ └── file.md │ │ └── file.md └── third │ └── library │ ├── a │ └── book.md │ └── b │ └── book.md ├── herebyfile.mjs ├── package.json ├── src ├── benchmark │ ├── suites │ │ ├── overhead │ │ │ ├── async.ts │ │ │ ├── stream.ts │ │ │ └── sync.ts │ │ ├── product │ │ │ ├── async.ts │ │ │ ├── stream.ts │ │ │ └── sync.ts │ │ └── regression │ │ │ ├── async.ts │ │ │ ├── stream.ts │ │ │ └── sync.ts │ └── utils.ts ├── index.spec.ts ├── index.ts ├── managers │ ├── tasks.spec.ts │ └── tasks.ts ├── providers │ ├── async.spec.ts │ ├── async.ts │ ├── filters │ │ ├── deep.spec.ts │ │ ├── deep.ts │ │ ├── entry.spec.ts │ │ ├── entry.ts │ │ ├── error.spec.ts │ │ └── error.ts │ ├── index.ts │ ├── matchers │ │ ├── matcher.spec.ts │ │ ├── matcher.ts │ │ ├── partial.spec.ts │ │ └── partial.ts │ ├── provider.spec.ts │ ├── provider.ts │ ├── stream.spec.ts │ ├── stream.ts │ ├── sync.spec.ts │ ├── sync.ts │ └── transformers │ │ ├── entry.spec.ts │ │ └── entry.ts ├── readers │ ├── async.spec.ts │ ├── async.ts │ ├── index.ts │ ├── reader.spec.ts │ ├── reader.ts │ ├── stream.spec.ts │ ├── stream.ts │ ├── sync.spec.ts │ └── sync.ts ├── settings.spec.ts ├── settings.ts ├── tests │ ├── e2e │ │ ├── errors.e2e.ts │ │ ├── options │ │ │ ├── absolute.e2e.ts │ │ │ ├── base-name-match.e2e.ts │ │ │ ├── case-sensitive-match.e2e.ts │ │ │ ├── deep.e2e.ts │ │ │ ├── dot.e2e.ts │ │ │ ├── ignore.e2e.ts │ │ │ ├── mark-directories.e2e.ts │ │ │ ├── only-directories.e2e.ts │ │ │ ├── only-files.e2e.ts │ │ │ └── unique.e2e.ts │ │ ├── patterns │ │ │ ├── regular.e2e.ts │ │ │ ├── root.e2e.ts │ │ │ └── static.e2e.ts │ │ └── runner.ts │ ├── index.ts │ └── utils │ │ ├── entry.ts │ │ ├── errno.ts │ │ ├── fs.ts │ │ ├── pattern.ts │ │ ├── platform.ts │ │ └── task.ts ├── types │ └── index.ts └── utils │ ├── array.spec.ts │ ├── array.ts │ ├── errno.spec.ts │ ├── errno.ts │ ├── fs.spec.ts │ ├── fs.ts │ ├── index.ts │ ├── path.spec.ts │ ├── path.ts │ ├── pattern.spec.ts │ ├── pattern.ts │ ├── stream.spec.ts │ ├── stream.ts │ ├── string.spec.ts │ └── string.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/.github/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/.github/workflows/benchmark.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/README.md -------------------------------------------------------------------------------- /__snapshots__/absolute.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/__snapshots__/absolute.e2e.js -------------------------------------------------------------------------------- /__snapshots__/base-name-match.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/__snapshots__/base-name-match.e2e.js -------------------------------------------------------------------------------- /__snapshots__/case-sensitive-match.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/__snapshots__/case-sensitive-match.e2e.js -------------------------------------------------------------------------------- /__snapshots__/deep.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/__snapshots__/deep.e2e.js -------------------------------------------------------------------------------- /__snapshots__/dot.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/__snapshots__/dot.e2e.js -------------------------------------------------------------------------------- /__snapshots__/errors.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/__snapshots__/errors.e2e.js -------------------------------------------------------------------------------- /__snapshots__/ignore.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/__snapshots__/ignore.e2e.js -------------------------------------------------------------------------------- /__snapshots__/mark-directories.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/__snapshots__/mark-directories.e2e.js -------------------------------------------------------------------------------- /__snapshots__/only-directories.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/__snapshots__/only-directories.e2e.js -------------------------------------------------------------------------------- /__snapshots__/only-files.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/__snapshots__/only-files.e2e.js -------------------------------------------------------------------------------- /__snapshots__/regular.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/__snapshots__/regular.e2e.js -------------------------------------------------------------------------------- /__snapshots__/root.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/__snapshots__/root.e2e.js -------------------------------------------------------------------------------- /__snapshots__/static.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/__snapshots__/static.e2e.js -------------------------------------------------------------------------------- /__snapshots__/unique.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/__snapshots__/unique.e2e.js -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /fixtures/.directory/file.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/.file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/file.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/first/file.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/first/nested/directory/file.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/first/nested/directory/file.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/first/nested/file.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/second/file.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/second/nested/directory/file.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/second/nested/file.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/third/library/a/book.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/third/library/b/book.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /herebyfile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/herebyfile.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/package.json -------------------------------------------------------------------------------- /src/benchmark/suites/overhead/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/benchmark/suites/overhead/async.ts -------------------------------------------------------------------------------- /src/benchmark/suites/overhead/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/benchmark/suites/overhead/stream.ts -------------------------------------------------------------------------------- /src/benchmark/suites/overhead/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/benchmark/suites/overhead/sync.ts -------------------------------------------------------------------------------- /src/benchmark/suites/product/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/benchmark/suites/product/async.ts -------------------------------------------------------------------------------- /src/benchmark/suites/product/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/benchmark/suites/product/stream.ts -------------------------------------------------------------------------------- /src/benchmark/suites/product/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/benchmark/suites/product/sync.ts -------------------------------------------------------------------------------- /src/benchmark/suites/regression/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/benchmark/suites/regression/async.ts -------------------------------------------------------------------------------- /src/benchmark/suites/regression/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/benchmark/suites/regression/stream.ts -------------------------------------------------------------------------------- /src/benchmark/suites/regression/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/benchmark/suites/regression/sync.ts -------------------------------------------------------------------------------- /src/benchmark/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/benchmark/utils.ts -------------------------------------------------------------------------------- /src/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/index.spec.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/managers/tasks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/managers/tasks.spec.ts -------------------------------------------------------------------------------- /src/managers/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/managers/tasks.ts -------------------------------------------------------------------------------- /src/providers/async.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/providers/async.spec.ts -------------------------------------------------------------------------------- /src/providers/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/providers/async.ts -------------------------------------------------------------------------------- /src/providers/filters/deep.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/providers/filters/deep.spec.ts -------------------------------------------------------------------------------- /src/providers/filters/deep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/providers/filters/deep.ts -------------------------------------------------------------------------------- /src/providers/filters/entry.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/providers/filters/entry.spec.ts -------------------------------------------------------------------------------- /src/providers/filters/entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/providers/filters/entry.ts -------------------------------------------------------------------------------- /src/providers/filters/error.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/providers/filters/error.spec.ts -------------------------------------------------------------------------------- /src/providers/filters/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/providers/filters/error.ts -------------------------------------------------------------------------------- /src/providers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/providers/index.ts -------------------------------------------------------------------------------- /src/providers/matchers/matcher.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/providers/matchers/matcher.spec.ts -------------------------------------------------------------------------------- /src/providers/matchers/matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/providers/matchers/matcher.ts -------------------------------------------------------------------------------- /src/providers/matchers/partial.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/providers/matchers/partial.spec.ts -------------------------------------------------------------------------------- /src/providers/matchers/partial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/providers/matchers/partial.ts -------------------------------------------------------------------------------- /src/providers/provider.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/providers/provider.spec.ts -------------------------------------------------------------------------------- /src/providers/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/providers/provider.ts -------------------------------------------------------------------------------- /src/providers/stream.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/providers/stream.spec.ts -------------------------------------------------------------------------------- /src/providers/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/providers/stream.ts -------------------------------------------------------------------------------- /src/providers/sync.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/providers/sync.spec.ts -------------------------------------------------------------------------------- /src/providers/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/providers/sync.ts -------------------------------------------------------------------------------- /src/providers/transformers/entry.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/providers/transformers/entry.spec.ts -------------------------------------------------------------------------------- /src/providers/transformers/entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/providers/transformers/entry.ts -------------------------------------------------------------------------------- /src/readers/async.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/readers/async.spec.ts -------------------------------------------------------------------------------- /src/readers/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/readers/async.ts -------------------------------------------------------------------------------- /src/readers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/readers/index.ts -------------------------------------------------------------------------------- /src/readers/reader.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/readers/reader.spec.ts -------------------------------------------------------------------------------- /src/readers/reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/readers/reader.ts -------------------------------------------------------------------------------- /src/readers/stream.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/readers/stream.spec.ts -------------------------------------------------------------------------------- /src/readers/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/readers/stream.ts -------------------------------------------------------------------------------- /src/readers/sync.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/readers/sync.spec.ts -------------------------------------------------------------------------------- /src/readers/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/readers/sync.ts -------------------------------------------------------------------------------- /src/settings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/settings.spec.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/tests/e2e/errors.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/tests/e2e/errors.e2e.ts -------------------------------------------------------------------------------- /src/tests/e2e/options/absolute.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/tests/e2e/options/absolute.e2e.ts -------------------------------------------------------------------------------- /src/tests/e2e/options/base-name-match.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/tests/e2e/options/base-name-match.e2e.ts -------------------------------------------------------------------------------- /src/tests/e2e/options/case-sensitive-match.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/tests/e2e/options/case-sensitive-match.e2e.ts -------------------------------------------------------------------------------- /src/tests/e2e/options/deep.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/tests/e2e/options/deep.e2e.ts -------------------------------------------------------------------------------- /src/tests/e2e/options/dot.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/tests/e2e/options/dot.e2e.ts -------------------------------------------------------------------------------- /src/tests/e2e/options/ignore.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/tests/e2e/options/ignore.e2e.ts -------------------------------------------------------------------------------- /src/tests/e2e/options/mark-directories.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/tests/e2e/options/mark-directories.e2e.ts -------------------------------------------------------------------------------- /src/tests/e2e/options/only-directories.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/tests/e2e/options/only-directories.e2e.ts -------------------------------------------------------------------------------- /src/tests/e2e/options/only-files.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/tests/e2e/options/only-files.e2e.ts -------------------------------------------------------------------------------- /src/tests/e2e/options/unique.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/tests/e2e/options/unique.e2e.ts -------------------------------------------------------------------------------- /src/tests/e2e/patterns/regular.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/tests/e2e/patterns/regular.e2e.ts -------------------------------------------------------------------------------- /src/tests/e2e/patterns/root.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/tests/e2e/patterns/root.e2e.ts -------------------------------------------------------------------------------- /src/tests/e2e/patterns/static.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/tests/e2e/patterns/static.e2e.ts -------------------------------------------------------------------------------- /src/tests/e2e/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/tests/e2e/runner.ts -------------------------------------------------------------------------------- /src/tests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/tests/index.ts -------------------------------------------------------------------------------- /src/tests/utils/entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/tests/utils/entry.ts -------------------------------------------------------------------------------- /src/tests/utils/errno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/tests/utils/errno.ts -------------------------------------------------------------------------------- /src/tests/utils/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/tests/utils/fs.ts -------------------------------------------------------------------------------- /src/tests/utils/pattern.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/tests/utils/pattern.ts -------------------------------------------------------------------------------- /src/tests/utils/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/tests/utils/platform.ts -------------------------------------------------------------------------------- /src/tests/utils/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/tests/utils/task.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/utils/array.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/utils/array.spec.ts -------------------------------------------------------------------------------- /src/utils/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/utils/array.ts -------------------------------------------------------------------------------- /src/utils/errno.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/utils/errno.spec.ts -------------------------------------------------------------------------------- /src/utils/errno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/utils/errno.ts -------------------------------------------------------------------------------- /src/utils/fs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/utils/fs.spec.ts -------------------------------------------------------------------------------- /src/utils/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/utils/fs.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/path.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/utils/path.spec.ts -------------------------------------------------------------------------------- /src/utils/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/utils/path.ts -------------------------------------------------------------------------------- /src/utils/pattern.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/utils/pattern.spec.ts -------------------------------------------------------------------------------- /src/utils/pattern.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/utils/pattern.ts -------------------------------------------------------------------------------- /src/utils/stream.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/utils/stream.spec.ts -------------------------------------------------------------------------------- /src/utils/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/utils/stream.ts -------------------------------------------------------------------------------- /src/utils/string.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/utils/string.spec.ts -------------------------------------------------------------------------------- /src/utils/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/src/utils/string.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmlnc/fast-glob/HEAD/tsconfig.json --------------------------------------------------------------------------------