-
-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolves #310.
- Loading branch information
Showing
1 changed file
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,13 +19,13 @@ Contributions are very welcome. This includes not only code PRs, but also: | |
To get the version of Dream installed in a project that uses it, run | ||
|
||
``` | ||
npx esy ls-builds | ||
opam list dream | ||
``` | ||
|
||
or | ||
|
||
``` | ||
opam list dream | ||
npx esy ls-builds | ||
``` | ||
|
||
<br> | ||
|
@@ -40,7 +40,8 @@ cd dream | |
``` | ||
|
||
Note: the clone *must* be `--recursive`, because Dream several dependencies | ||
vendored as [submodules](https://github.com/aantron/dream/tree/master/src/vendor)! | ||
vendored as | ||
[submodules](https://github.com/aantron/dream/tree/master/src/vendor). | ||
|
||
Later, you'll need to fork the repository on GitHub, and add your fork as a | ||
remote: | ||
|
@@ -52,7 +53,7 @@ git remote add fork [email protected]:my-github-name/dream.git | |
Install Dream's dependencies: | ||
|
||
``` | ||
opam install --deps-only ./dream.opam --with-test | ||
make deps | ||
``` | ||
|
||
If you don't have an opam switch ready, first create one with | ||
|