├── .gitignore ├── Readme.md ├── bsconfig.json ├── package.json ├── ppx └── Focus.re ├── src └── Lens.re ├── tests └── Tests.re └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | .merlin 4 | _opam/ 5 | .idea/ 6 | .bsb.lock -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cem2ran/refocus/HEAD/Readme.md -------------------------------------------------------------------------------- /bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cem2ran/refocus/HEAD/bsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cem2ran/refocus/HEAD/package.json -------------------------------------------------------------------------------- /ppx/Focus.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cem2ran/refocus/HEAD/ppx/Focus.re -------------------------------------------------------------------------------- /src/Lens.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cem2ran/refocus/HEAD/src/Lens.re -------------------------------------------------------------------------------- /tests/Tests.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cem2ran/refocus/HEAD/tests/Tests.re -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cem2ran/refocus/HEAD/yarn.lock --------------------------------------------------------------------------------