Skip to content

Commit 61eec17

Browse files
committed
Add missing dev depends
Signed-off-by: Sora Morimoto <[email protected]>
1 parent 9a0235e commit 61eec17

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

dune-project

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ possible and does not make any assumptions about IO.
3737
(ppx_expect (and (>= v0.17.0) :with-test))
3838
(uutf (>= 1.0.2))
3939
(odoc :with-doc)
40-
(ocaml (>= 4.14))))
40+
(ocaml (>= 4.14))
41+
(ppx_yojson_conv :with-dev-setup)))
4142

4243
(package
4344
(name ocaml-lsp-server)
@@ -69,7 +70,8 @@ possible and does not make any assumptions about IO.
6970
(csexp (>= 1.5))
7071
(ocamlformat-rpc-lib (>= 0.21.0))
7172
(odoc :with-doc)
72-
(merlin-lib (and (>= 5.2) (< 6.0)))))
73+
(merlin-lib (and (>= 5.2) (< 6.0)))
74+
(ppx_yojson_conv :with-dev-setup)))
7375

7476
(package
7577
(name jsonrpc)

lsp.opam

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ depends: [
3232
"uutf" {>= "1.0.2"}
3333
"odoc" {with-doc}
3434
"ocaml" {>= "4.14"}
35+
"ppx_yojson_conv" {with-dev-setup}
3536
]
3637
dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git"
3738
build: [

ocaml-lsp-server.opam

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ depends: [
4646
"ocamlformat-rpc-lib" {>= "0.21.0"}
4747
"odoc" {with-doc}
4848
"merlin-lib" {>= "5.2" & < "6.0"}
49+
"ppx_yojson_conv" {with-dev-setup}
4950
]
5051
dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git"
5152
build: [

0 commit comments

Comments
 (0)