-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
dune-project
62 lines (47 loc) · 1.08 KB
/
dune-project
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
(lang dune 3.13)
(using experimental_building_ocaml_compiler_with_dune 0.1)
(using menhir 2.1)
(using melange 0.1)
(executables_implicit_empty_intf true)
(cram enable)
(generate_opam_files true)
(name melange)
(source
(github melange-re/melange))
(authors "Antonio Nuno Monteiro <[email protected]>")
(maintainers "Antonio Nuno Monteiro <[email protected]>")
(homepage "https://github.com/melange-re/melange")
(bug_reports "https://github.com/melange-re/melange/issues")
(license "LGPL-2.1-or-later")
(package
(name melange)
(synopsis "Toolchain to produce JS from Reason/OCaml")
(depends
(ocaml
(>= "5.2"))
(cmdliner
(>= "1.1.0"))
dune-build-info
(cppo :build)
(ounit :with-test)
(reason
(and :dev :with-test))
(ppxlib
(>= "0.30.0"))
(menhir
(>= 20201214))
(reason-react-ppx
(and :with-test :post))
(merlin :with-test)))
(package
(name melange-playground)
(synopsis "The Melange compiler, bundled for the browser")
(allow_empty)
(depends
ocaml
js_of_ocaml
(reason
(>= "3.10.0"))
(melange
(= :version))
reason-react-ppx))