├── .github └── workflows │ └── release.yml ├── .gitignore ├── .indo.json ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── pnpm-lock.yaml ├── rollup.config.js ├── spec ├── __fixtures__ │ └── foo │ │ ├── bar.ts │ │ └── bar │ │ ├── baz │ │ └── index.ts │ │ └── index.js └── index.test.ts ├── src ├── glob.ts ├── index.ts ├── sortPaths.ts └── types.ts └── tsconfig.json /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloc/filespy/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | vendor 4 | dist 5 | -------------------------------------------------------------------------------- /.indo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloc/filespy/HEAD/.indo.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloc/filespy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloc/filespy/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloc/filespy/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloc/filespy/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloc/filespy/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloc/filespy/HEAD/rollup.config.js -------------------------------------------------------------------------------- /spec/__fixtures__/foo/bar.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/__fixtures__/foo/bar/baz/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/__fixtures__/foo/bar/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloc/filespy/HEAD/spec/index.test.ts -------------------------------------------------------------------------------- /src/glob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloc/filespy/HEAD/src/glob.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloc/filespy/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/sortPaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloc/filespy/HEAD/src/sortPaths.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloc/filespy/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alloc/filespy/HEAD/tsconfig.json --------------------------------------------------------------------------------