diff options
author | 2021-10-26 22:38:36 -0700 | |
---|---|---|
committer | 2021-10-26 22:38:36 -0700 | |
commit | a1f17f70ebf494fd39975daad805d4e5fb59f7f9 (patch) | |
tree | 5687969240c8269673e0eb35c707e19dfc89d3b0 | |
parent | a0f086ba85e373f433fa8298ecaeafea089d1eb7 (diff) | |
download | bun-a1f17f70ebf494fd39975daad805d4e5fb59f7f9.tar.gz bun-a1f17f70ebf494fd39975daad805d4e5fb59f7f9.tar.zst bun-a1f17f70ebf494fd39975daad805d4e5fb59f7f9.zip |
Suggest running tests in build instructions
-rw-r--r-- | README.md | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -916,7 +916,13 @@ In `bun`: ```bash git submodule update --init --recursive --progress --depth=1 -make vendor +make vendor dev +``` + +Verify it worked: + +```bash +make test-dev-all ``` Note that `brew install zig` won't work. Bun uses a build of Zig with a couple patches. @@ -958,6 +964,12 @@ Compile Bun: make vendor dev ``` +Verify it worked: + +```bash +make test-dev-all +``` + Run bun: ```bash |