-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmelange-fest.opam
41 lines (41 loc) · 991 Bytes
/
melange-fest.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
opam-version: "2.0"
synopsis: "A minimal test framework for Melange"
description: "A minimal test framework for Melange using Node test runner"
maintainer: [
"Feihong Hsu <[email protected]>"
"Javier Chávarri <[email protected]>"
]
authors: [
"Feihong Hsu <[email protected]>"
"Javier Chávarri <[email protected]>"
]
tags: ["melange" "node" "org:ahrefs"]
license: "MIT"
homepage: "https://github.com/ahrefs/melange-fest"
bug-reports: "https://github.com/ahrefs/melange-fest/issues"
dev-repo: "git+https://github.com/ahrefs/melange-fest.git"
depends: [
"ocaml"
"dune" {>= "3.9"}
"melange" {>= "3.0"}
"reason" {with-test}
"reason-react" {with-test}
"reason-react-ppx" {with-test}
"melange-testing-library" {with-test}
"ocaml-lsp-server" {with-test}
"odoc" {with-doc}
"ocamlformat" {with-test}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@doc" {with-doc}
]
]