Skip to content

Commit

Permalink
Add examples opam dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
MisterDA authored and let-def committed Jan 12, 2023
1 parent 1010175 commit fb95191
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions brr-lwd.opam
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ depends: [
"lwd" {= version}
"brr" {>= "0.0.4"}
"js_of_ocaml"
"js_of_ocaml-lwt" {with-test}
"odoc" {with-doc}
]
build: [
Expand Down
7 changes: 5 additions & 2 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@
(name nottui)
(synopsis "UI toolkit for the terminal built on top of Notty and Lwd")
(documentation "https://let-def.github.io/lwd/doc")
(depends (lwd (= :version)) (notty (>= 0.2))))
(depends (lwd (= :version)) (notty (>= 0.2))
(cbor :with-test) ; for the examples
(containers :with-test))) ; for the examples

(package
(name tyxml-lwd)
Expand All @@ -32,7 +34,8 @@
(name brr-lwd)
(synopsis "Make reactive webpages in Js_of_ocaml using Brr and Lwd")
(documentation "https://let-def.github.io/lwd/doc")
(depends (lwd (= :version)) (brr (>= 0.0.4)) js_of_ocaml))
(depends (lwd (= :version)) (brr (>= 0.0.4)) js_of_ocaml
(js_of_ocaml-lwt :with-test))) ; for the examples

(package
(name nottui-pretty)
Expand Down
2 changes: 2 additions & 0 deletions nottui.opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ depends: [
"dune" {>= "3.5"}
"lwd" {= version}
"notty" {>= "0.2"}
"cbor" {with-test}
"containers" {with-test}
"odoc" {with-doc}
]
build: [
Expand Down

0 comments on commit fb95191

Please sign in to comment.