├── .github └── workflows │ └── checks.yml ├── .gitignore ├── .prettierignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── demo ├── 55.ts ├── fs-monkey.ts ├── many-fs.ts └── memfs.ts ├── package.json ├── prettier.config.js ├── renovate.json ├── src ├── __tests__ │ └── union.test.ts ├── fs.ts ├── index.ts └── union.ts ├── tsconfig.json └── yarn.lock /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/unionfs/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/unionfs/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | CHANGELOG.md 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/unionfs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/unionfs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/unionfs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/unionfs/HEAD/README.md -------------------------------------------------------------------------------- /demo/55.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/unionfs/HEAD/demo/55.ts -------------------------------------------------------------------------------- /demo/fs-monkey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/unionfs/HEAD/demo/fs-monkey.ts -------------------------------------------------------------------------------- /demo/many-fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/unionfs/HEAD/demo/many-fs.ts -------------------------------------------------------------------------------- /demo/memfs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/unionfs/HEAD/demo/memfs.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/unionfs/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/unionfs/HEAD/prettier.config.js -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/unionfs/HEAD/renovate.json -------------------------------------------------------------------------------- /src/__tests__/union.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/unionfs/HEAD/src/__tests__/union.test.ts -------------------------------------------------------------------------------- /src/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/unionfs/HEAD/src/fs.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/unionfs/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/union.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/unionfs/HEAD/src/union.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/unionfs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/unionfs/HEAD/yarn.lock --------------------------------------------------------------------------------