-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dune-project
54 lines (43 loc) · 1.01 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
(lang dune 3.13)
(using menhir 3.0)
(name acutis)
(version 0.25.0)
(generate_opam_files true)
(source
(github johnridesabike/acutis))
(authors "John Jackson <[email protected]>")
(maintainers "John Jackson <[email protected]>")
(license MPL-2.0)
(documentation https://johnridesa.bike/acutis/)
(package
(name acutis)
(synopsis "A simple and type-safe template language")
(description "
Acutis is a template language that features static typing, pattern matching, and
asynchronous template components. You can execute your templates like scripts or
compile them to self-contained JavaScript files.
")
(depends
(ocaml
(>= 5.2))
menhir
yojson
dune-build-info
(ocamlformat
(and
(= 0.26.2)
:with-test))
(sherlodoc :with-doc)))
(package
(name acutis_js)
(synopsis "A virtual package containing the Acutis JavaScript dependencies")
(allow_empty)
(depends
(ocaml
(>= 5.0))
(acutis
(= :version))
(js_of_ocaml
(>= 5.8.1))
js_of_ocaml-compiler
js_of_ocaml-ppx))