├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── lib ├── MemoryFileSystem.js ├── MemoryFileSystemError.js ├── join.js └── normalize.js ├── package.json ├── test ├── MemoryFileSystem.js └── MemoryFileSystemError.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/memory-fs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/memory-fs/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/memory-fs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/memory-fs/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/memory-fs/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/memory-fs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/memory-fs/HEAD/README.md -------------------------------------------------------------------------------- /lib/MemoryFileSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/memory-fs/HEAD/lib/MemoryFileSystem.js -------------------------------------------------------------------------------- /lib/MemoryFileSystemError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/memory-fs/HEAD/lib/MemoryFileSystemError.js -------------------------------------------------------------------------------- /lib/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/memory-fs/HEAD/lib/join.js -------------------------------------------------------------------------------- /lib/normalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/memory-fs/HEAD/lib/normalize.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/memory-fs/HEAD/package.json -------------------------------------------------------------------------------- /test/MemoryFileSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/memory-fs/HEAD/test/MemoryFileSystem.js -------------------------------------------------------------------------------- /test/MemoryFileSystemError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/memory-fs/HEAD/test/MemoryFileSystemError.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpack/memory-fs/HEAD/yarn.lock --------------------------------------------------------------------------------