forked from melange-re/melange
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdune-project
More file actions
57 lines (43 loc) · 1.05 KB
/
dune-project
File metadata and controls
57 lines (43 loc) · 1.05 KB
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
(lang dune 3.13)
(using experimental_building_ocaml_compiler_with_dune 0.1)
(using menhir 3.0)
(using melange 0.1)
(using directory-targets 0.1)
(generate_opam_files true)
(name melange)
(source
(github melange-re/melange))
(authors "Antonio Nuno Monteiro <anmonteiro@gmail.com>")
(maintainers "Antonio Nuno Monteiro <anmonteiro@gmail.com>")
(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 (>= "5.4") (< "5.5")))
(cmdliner
(>= "1.1.0"))
dune-build-info
(cppo :build)
(ounit :with-test)
(reason
(and :dev :with-test))
(ppxlib :dev)
(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 :dev)
(reason :dev)
(melange (= :version))
reason-react-ppx))