├── .gitignore ├── .ocamlformat ├── LICENSE ├── README.md ├── bsconfig.json ├── package.json ├── src └── ppx_tea_jsx.ml └── test ├── test.ml └── test.re /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanmakes/ppx-tea-jsx/HEAD/.gitignore -------------------------------------------------------------------------------- /.ocamlformat: -------------------------------------------------------------------------------- 1 | profile = sparse 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanmakes/ppx-tea-jsx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanmakes/ppx-tea-jsx/HEAD/README.md -------------------------------------------------------------------------------- /bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanmakes/ppx-tea-jsx/HEAD/bsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanmakes/ppx-tea-jsx/HEAD/package.json -------------------------------------------------------------------------------- /src/ppx_tea_jsx.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanmakes/ppx-tea-jsx/HEAD/src/ppx_tea_jsx.ml -------------------------------------------------------------------------------- /test/test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanmakes/ppx-tea-jsx/HEAD/test/test.ml -------------------------------------------------------------------------------- /test/test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ozanmakes/ppx-tea-jsx/HEAD/test/test.re --------------------------------------------------------------------------------