-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathdune-project
67 lines (52 loc) · 1.12 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
63
64
65
66
67
(lang dune 3.8)
(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
(and
(>= "4.14")
(< "5.0")))
(cmdliner
(>= "1.1.0"))
dune-build-info
(cppo :build)
(ounit :with-test)
(reason
(and
:with-test
(>= "3.9.0")))
(ppxlib
(>= "0.30.0"))
(menhir
(>= 20201214))
pp
(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))