Skip to content

Commit

Permalink
Fix missing deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarbin committed Aug 22, 2024
1 parent a6c294f commit d6c37e5
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 2 deletions.
4 changes: 4 additions & 0 deletions commandlang-test.opam
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ depends: [
"climate" {= "0.0.1~preview-0.1"}
"cmdliner" {= "1.3.0"}
"commandlang" {= version}
"commandlang-err" {= version}
"commandlang-to-base" {= version}
"commandlang-to-cmdliner" {= version}
"commandlang-to-climate" {= version}
"core" {>= "v0.17" & < "v0.18"}
"core_unix" {>= "v0.17" & < "v0.18"}
"expect_test_helpers_core" {>= "v0.17" & < "v0.18"}
Expand Down
1 change: 1 addition & 0 deletions commandlang-to-base.opam
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ depends: [
"base" {>= "v0.17" & < "v0.18"}
"bisect_ppx" {dev & >= "2.8.3"}
"commandlang" {= version}
"commandlang-err" {= version}
"core" {>= "v0.17" & < "v0.18"}
"ppx_compare" {>= "v0.17" & < "v0.18"}
"ppx_enumerate" {>= "v0.17" & < "v0.18"}
Expand Down
1 change: 1 addition & 0 deletions commandlang-to-climate.opam
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ depends: [
"bisect_ppx" {dev & >= "2.8.3"}
"climate" {= "0.0.1~preview-0.1"}
"commandlang" {= version}
"commandlang-err" {= version}
"ppx_js_style" {dev & >= "v0.17" & < "v0.18"}
"odoc" {with-doc}
]
Expand Down
1 change: 1 addition & 0 deletions commandlang-to-cmdliner.opam
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ depends: [
"bisect_ppx" {dev & >= "2.8.3"}
"cmdliner" {= "1.3.0"}
"commandlang" {= version}
"commandlang-err" {= version}
"ppx_js_style" {dev & >= "v0.17" & < "v0.18"}
"odoc" {with-doc}
]
Expand Down
14 changes: 14 additions & 0 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@
(>= 2.8.3)))
(commandlang
(= :version))
(commandlang-err
(= :version))
(core
(and
(>= v0.17)
Expand Down Expand Up @@ -133,6 +135,8 @@
(= 1.3.0))
(commandlang
(= :version))
(commandlang-err
(= :version))
(ppx_js_style
(and
:dev
Expand All @@ -153,6 +157,8 @@
(= 0.0.1~preview-0.1))
(commandlang
(= :version))
(commandlang-err
(= :version))
(ppx_js_style
(and
:dev
Expand All @@ -179,6 +185,14 @@
(= 1.3.0))
(commandlang
(= :version))
(commandlang-err
(= :version))
(commandlang-to-base
(= :version))
(commandlang-to-climate
(= :version))
(commandlang-to-cmdliner
(= :version))
(core
(and
(>= v0.17)
Expand Down
2 changes: 1 addition & 1 deletion lib/commandlang_to_base/src/dune
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
Commandlang_ast
-open
Commandlang_err)
(libraries base commandlang commandlang_err commandlang_ast core.command)
(libraries base commandlang commandlang_ast commandlang_err core.command)
(instrumentation
(backend bisect_ppx))
(lint
Expand Down
2 changes: 1 addition & 1 deletion lib/commandlang_to_cmdliner/src/dune
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
+a
-open
Commandlang_ast)
(libraries cmdliner commandlang commandlang_err commandlang_ast)
(libraries cmdliner commandlang commandlang_ast commandlang_err)
(instrumentation
(backend bisect_ppx))
(lint
Expand Down

0 comments on commit d6c37e5

Please sign in to comment.