Yarn workspaces monorepo with packages:
- memfs - In-memory file system with Node.js
fsAPI - fs-node-builtins - Node.js standard library polyfills (fs, events, stream)
- fs-node-utils - Utility types and helpers for
fsoperations
# Install dependencies
yarn
# Clean all packages
yarn clean
# Build all packages
yarn build
# Run tests in all packages
yarn test
# Run typecheck in all packages
yarn typecheck
# Check formatting in all packages
yarn prettier:check
# Fix formatting in all packages
yarn prettier