Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improving setup instructions #498

Merged
merged 1 commit into from
Feb 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ You can do it via `opam`:
```sh
$ git clone [email protected]:tarides/dune-release.git
$ cd dune-release
$ opam switch create ./ ocaml-base-compiler.4.14.0 --deps-only -t
$ opam switch create ./ ocaml-base-compiler.4.14.0 --deps-only -t --with-dev-setup
```

This will create a local switch with a fresh compiler, the dependencies of
Expand Down
4 changes: 3 additions & 1 deletion dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ with [Dune](https://github.com/ocaml/dune) and hosted on
logs
odoc
(alcotest :with-test)
(yojson (>= 1.6)))
(yojson (>= 1.6))
(ocamlformat (and (= 0.26.0) :with-dev-setup))
)
(conflicts
(result (< 1.5))))
1 change: 1 addition & 0 deletions dune-release.opam
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ depends: [
"odoc"
"alcotest" {with-test}
"yojson" {>= "1.6"}
"ocamlformat" {= "0.26.0" & with-dev-setup}
]
conflicts: [
"result" {< "1.5"}
Expand Down