Skip to content

Commit 8553810

Browse files
authored
Update deps (#876)
* update dependencies to work with opam 2.3 * update `make install` to also install dev deps
1 parent e05a1ce commit 8553810

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ format-check: ## Checks if format is correct
5353

5454
.PHONY: install
5555
install: ## Update the package dependencies when new deps are added to dune-project
56-
@opam install . --deps-only --with-test
56+
@opam install . --deps-only --with-test --with-dev-setup
5757
@npm install
5858

5959
.PHONY: init

dune-project

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@
4343
(ocaml-lsp-server :with-dev-setup)
4444
(opam-check-npm-deps
4545
(and
46-
(= 1.0.0)
46+
(= 3.0.1)
4747
:with-dev-setup))
4848
(ocamlformat
4949
(and
50-
(= 0.24.0)
50+
(= 0.27.0)
5151
:with-dev-setup))))
5252

5353
(package
@@ -64,5 +64,5 @@
6464
(merlin :with-test)
6565
(ocamlformat
6666
(and
67-
(= 0.24.0)
67+
(= 0.27.0)
6868
:with-dev-setup))))

reason-react-ppx.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ depends: [
1919
"reason" {>= "3.12.0"}
2020
"ppxlib" {>= "0.33.0"}
2121
"merlin" {with-test}
22-
"ocamlformat" {= "0.24.0" & with-dev-setup}
22+
"ocamlformat" {= "0.27.0" & with-dev-setup}
2323
"odoc" {with-doc}
2424
]
2525
build: [

reason-react.opam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ depends: [
2323
"reason-react-ppx" {= version}
2424
"reason" {>= "3.12.0"}
2525
"ocaml-lsp-server" {with-dev-setup}
26-
"opam-check-npm-deps" {= "1.0.0" & with-dev-setup}
27-
"ocamlformat" {= "0.24.0" & with-dev-setup}
26+
"opam-check-npm-deps" {= "3.0.1" & with-dev-setup}
27+
"ocamlformat" {= "0.27.0" & with-dev-setup}
2828
"odoc" {with-doc}
2929
]
3030
build: [

0 commit comments

Comments
 (0)