add dev env packages to depends

This commit is contained in:
rmanseau 2023-11-20 13:36:40 -08:00
parent f775ed645b
commit 421616a282
No known key found for this signature in database
GPG Key ID: 060BE2D43CFAB17A
4 changed files with 15 additions and 2 deletions

2
.envrc
View File

@ -1 +1 @@
eval $(opam config env)
eval $(opam env --switch=.)

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
.DS_Store
_build/
_opam/

View File

@ -12,6 +12,9 @@ bug-reports: "https://github.com/username/reponame/issues"
depends: [
"ocaml"
"dune" {>= "3.10"}
"utop"
"ocaml-lsp-server"
"ocamlformat"
"re"
"containers"
"iter"

View File

@ -22,6 +22,12 @@
(synopsis "A short synopsis")
(description "A longer description")
(depends
;; development env
utop
ocaml-lsp-server
ocamlformat
;; deps
ocaml
dune
re
@ -29,11 +35,14 @@
iter
dune-site
angstrom
;; ppx
ppx_deriving
ppx_deriving_hash
ppx_regexp
ppx_expect
ppx_inline_test)
ppx_inline_test
)
(sites (lib inputs))
(tags
(topics "to describe" your project)))