-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
server-reason-react.opam
53 lines (53 loc) · 1.43 KB
/
server-reason-react.opam
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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Rendering React components on the server natively"
maintainer: ["David Sancho <[email protected]>"]
authors: ["David Sancho <[email protected]>"]
license: "MIT"
homepage: "https://github.com/ml-in-barcelona/server-reason-react"
bug-reports: "https://github.com/ml-in-barcelona/server-reason-react/issues"
depends: [
"dune" {>= "3.9"}
"ocaml" {>= "5.0.0"}
"reason" {>= "3.11.0"}
"melange" {>= "3.0.0"}
"uucp" {>= "16.0.0"}
"ppxlib" {> "0.23.0"}
"quickjs" {>= "0.1.2"}
"promise" {>= "1.1.2"}
"lwt" {>= "5.6.0"}
"lwt_ppx" {>= "2.1.0"}
"uri" {>= "4.2.0"}
"yojson" {>= "2.2.0"}
"integers" {>= "0.7.0"}
"odoc" {with-doc}
"ocamlformat" {= "0.26.2" & with-test}
"ocaml-lsp-server" {with-dev-setup}
"dream" {with-dev-setup}
"melange-webapi" {with-dev-setup}
"reason-react" {with-dev-setup}
"melange-webapi" {with-dev-setup}
"reason-react-ppx" {with-dev-setup}
"alcotest" {with-test}
"alcotest-lwt" {with-test}
"fmt" {with-test}
"merlin" {with-test}
"core_unix" {with-test}
"core_bench" {with-test}
]
dev-repo: "git+https://github.com/ml-in-barcelona/server-reason-react.git"
# The template is needed since we want to add "@new-doc" into the build command
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@new-doc" {with-doc}
]
]