├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── renovate.json └── workflows │ ├── benchmark.yml │ ├── ci.yml │ ├── preview.yml │ └── publish.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── benchmark ├── bench.ts └── setup.ts ├── biome.json ├── package.json ├── pnpm-lock.yaml ├── src ├── crawler.ts ├── index.ts ├── patterns.ts ├── types.ts └── utils.ts ├── test ├── index.test.ts └── utils │ ├── convertPathToPattern.test.ts │ ├── escapePath.test.ts │ ├── isDynamicPattern.test.ts │ └── partial-matcher.test.ts ├── tsconfig.json └── tsdown.config.ts /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: SuperchupuDev 2 | -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/.github/workflows/benchmark.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/.github/workflows/preview.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/bench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/benchmark/bench.ts -------------------------------------------------------------------------------- /benchmark/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/benchmark/setup.ts -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/biome.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/crawler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/src/crawler.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/patterns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/src/patterns.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/test/index.test.ts -------------------------------------------------------------------------------- /test/utils/convertPathToPattern.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/test/utils/convertPathToPattern.test.ts -------------------------------------------------------------------------------- /test/utils/escapePath.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/test/utils/escapePath.test.ts -------------------------------------------------------------------------------- /test/utils/isDynamicPattern.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/test/utils/isDynamicPattern.test.ts -------------------------------------------------------------------------------- /test/utils/partial-matcher.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/test/utils/partial-matcher.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsdown.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperchupuDev/tinyglobby/HEAD/tsdown.config.ts --------------------------------------------------------------------------------