├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ └── print-esy-cache.js ├── .gitignore ├── .ocamlformat ├── CHANGES.md ├── LICENSE ├── README.md ├── VERSION ├── dune-project ├── logs-ppx.opam ├── nix ├── default.nix ├── generic.nix └── sources.nix ├── package.json ├── scripts └── release.sh ├── shell.nix ├── src ├── Ppx.ml └── dune └── test ├── dune ├── pp.ml ├── test.expected.ml └── test.ml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/logs-ppx/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/logs-ppx/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/print-esy-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/logs-ppx/HEAD/.github/workflows/print-esy-cache.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/logs-ppx/HEAD/.gitignore -------------------------------------------------------------------------------- /.ocamlformat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/logs-ppx/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/logs-ppx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/logs-ppx/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.2.0 2 | -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/logs-ppx/HEAD/dune-project -------------------------------------------------------------------------------- /logs-ppx.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/logs-ppx/HEAD/logs-ppx.opam -------------------------------------------------------------------------------- /nix/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/logs-ppx/HEAD/nix/default.nix -------------------------------------------------------------------------------- /nix/generic.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/logs-ppx/HEAD/nix/generic.nix -------------------------------------------------------------------------------- /nix/sources.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/logs-ppx/HEAD/nix/sources.nix -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/logs-ppx/HEAD/package.json -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/logs-ppx/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/logs-ppx/HEAD/shell.nix -------------------------------------------------------------------------------- /src/Ppx.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/logs-ppx/HEAD/src/Ppx.ml -------------------------------------------------------------------------------- /src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/logs-ppx/HEAD/src/dune -------------------------------------------------------------------------------- /test/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/logs-ppx/HEAD/test/dune -------------------------------------------------------------------------------- /test/pp.ml: -------------------------------------------------------------------------------- 1 | let () = Ppxlib.Driver.standalone () 2 | -------------------------------------------------------------------------------- /test/test.expected.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/logs-ppx/HEAD/test/test.expected.ml -------------------------------------------------------------------------------- /test/test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulrikstrid/logs-ppx/HEAD/test/test.ml --------------------------------------------------------------------------------