diff options
author | 2021-11-20 08:54:31 +0800 | |
---|---|---|
committer | 2021-11-20 08:54:31 +0800 | |
commit | eb3123adb8237733a1581d47f8e898d97e807729 (patch) | |
tree | 2a9816fbdc8ac27116179656d4d1cfb06d4769cb | |
parent | 2b4f20b94c73dba4349720fcaccc85ea93ec4093 (diff) | |
download | bun-eb3123adb8237733a1581d47f8e898d97e807729.tar.gz bun-eb3123adb8237733a1581d47f8e898d97e807729.tar.zst bun-eb3123adb8237733a1581d47f8e898d97e807729.zip |
Add information about node modules
-rw-r--r-- | README.md | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -982,6 +982,15 @@ make vendor jsc identifier-cache dev Verify it worked: +First ensure the node dependencies are installed + +```bash +cd integration/snippets +npm i +``` + +Then + ```bash make test-dev-all ``` @@ -1037,6 +1046,15 @@ make vendor dev Verify it worked: +First ensure the node dependencies are installed + +```bash +cd integration/snippets +npm i +``` + +Then + ```bash make test-dev-all ``` |