forked from ml-in-barcelona/jsoo-react
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdune-project
44 lines (31 loc) · 1.05 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
(lang dune 2.7)
(name jsoo-react)
(license MIT)
(maintainers "Javier Chávarri <[email protected]>")
(authors "Javier Chávarri <[email protected]>")
(source
(github ml-in-barcelona/jsoo-react))
(generate_opam_files true)
(implicit_transitive_deps false)
(package
(name jsoo-react)
(synopsis "Bindings to ReactJS for js_of_ocaml, including JSX ppx")
(depends
;; General system dependencies
(dune (and (>= 2) (< 4)))
(ocaml (and (>= 4.10.0) (< 5.0.0)))
(js_of_ocaml (and (>= 4.0.0) (<= 5.0.0)))
(gen_js_api (and (>= 1.0.8) (< 1.1.0)))
(ppxlib (>= 0.23.0))
;; Test dependencies
(webtest :with-test)
(webtest-js :with-test)
(js_of_ocaml-ppx :with-test)
(conf-npm :with-test)
;; Dev dependencies, using with-test so that consumers don't install them (until package is released in opam)
(ocamlformat (and (= 0.20.1) :with-test))
(reason :with-test)
;; Example dependencies, using with-test so that consumers don't install them (until package is released in opam)
(ppx_blob :with-test)
(js_of_ocaml-lwt :with-test)
))