-
Notifications
You must be signed in to change notification settings - Fork 0
/
esy.json
34 lines (34 loc) · 1 KB
/
esy.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "inline-test-ppx",
"esy": {
"build": "dune build -p #{self.name}",
"buildDev": "dune build --root . --only-package #{self.name}",
"buildEnv": { "ODOC_SYNTAX": "ml" }
},
"dependencies": {
"@opam/dune": ">= 2.0",
"@opam/ppxlib": "*",
"@opam/yojson": "1.7.0",
"ocaml": ">= 4.8.0",
"@opam/ppx_expect": "v0.14.2"
},
"devDependencies": {
"@opam/dune-release": "*",
"@opam/ocaml-lsp-server": "*",
"@opam/ocamlformat": "*",
"@opam/odoc": "*",
"@opam/utop": "*",
"ocaml": "~4.13.1"
},
"scripts": {
"start": "esy x inline-test-ppx",
"test": "dune runtest --no-buffer",
"test:promote": "dune runtest --no-buffer --auto-promote",
"doc": "esy dune build @doc",
"doc-path": "esy echo #{self.target_dir}/default/_doc/_html/index.html",
"format": "esy dune build @fmt --auto-promote",
"watch": "esy dune build -p #{self.name} --watch",
"utop": "esy dune utop lib -- -implicit-bindings",
"release": "./script/release.sh"
}
}