-
Notifications
You must be signed in to change notification settings - Fork 6
/
documentation-site.opam
47 lines (47 loc) · 1.27 KB
/
documentation-site.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
opam-version: "2.0"
synopsis: "Melange documentation site"
description: "Content for the Melange documentation site"
maintainer: [
"Antonio Nuno Monteiro <[email protected]>"
"Javier Chávarri <[email protected]>"
]
authors: [
"Antonio Nuno Monteiro <[email protected]>"
"Javier Chávarri <[email protected]>"
]
license: "MIT"
homepage: "https://github.com/melange-re/melange-re.github.io"
bug-reports: "https://github.com/melange-re/melange-re.github.io"
depends: [
"ocaml"
"dune" {>= "3.8.0"}
"reason" {>= "3.13.0"}
"reason-react"
"reason-react-ppx"
"ocamlformat"
"js_of_ocaml"
"cmarkit" {dev}
"melange" {dev} # needs to pin it to get the docs in a stable path
"melange-playground" {dev}
"ocaml-lsp-server" {dev}
]
dev-repo: "git+https://github.com/melange-re/melange-re.github.io.git"
pin-depends: [
[ "melange.dev" "git+https://github.com/melange-re/melange.git#4.0.1-52" ]
[ "melange-playground.dev" "git+https://github.com/melange-re/melange.git#4.0.1-52" ]
[ "cmarkit.dev" "git+https://github.com/dbuenzli/cmarkit.git#f37c8ea86fd0be8dba7a8babcee3682e0e047d91" ]
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]