-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdune-project
37 lines (32 loc) · 930 Bytes
/
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
(lang dune 3.12)
(generate_opam_files true)
(implicit_transitive_deps false)
(name html_of_jsx)
(maintainers "David Sancho <[email protected]>")
(authors "David Sancho <[email protected]>")
(license MIT)
(source
(github davesnx/html_of_jsx))
(package
(name html_of_jsx)
; There's a bug with pushing documentation with dune-release
; (documentation https://davesnx.github.io/html_of_jsx/html_of_jsx/index.html)
(synopsis "Render HTML with JSX")
(description "html_of_jsx is a JSX transformation that allows you to write HTML declaratively.")
(depends
(ocaml (>= 4.14))
(ppxlib (>= 0.25.0))
;; Test dependencies
(alcotest :with-test)
(benchmark :with-test)
(reason (and (>= 3.10.0) :with-test))
;; Documentation
(odoc :with-doc)
;; Dev dependencies
(ocamlformat
(and
(= 0.26.1) (or
:with-dev-setup :with-test)))
(ocaml-lsp-server :with-dev-setup)
(tiny_httpd :with-dev-setup)
))