diff options
author | 2023-10-10 18:50:46 -0700 | |
---|---|---|
committer | 2023-10-10 18:50:46 -0700 | |
commit | e9470121d2f2feeeebb449639319ea799e483075 (patch) | |
tree | d7f3c541cc8eeec6f16d167204b3e36274708f1b /docs/runtime/bunfig.md | |
parent | ee2e34866e3bc0d12ba5cb1d5041524776472d71 (diff) | |
download | bun-e9470121d2f2feeeebb449639319ea799e483075.tar.gz bun-e9470121d2f2feeeebb449639319ea799e483075.tar.zst bun-e9470121d2f2feeeebb449639319ea799e483075.zip |
more docsdylan/github-api-option
Diffstat (limited to 'docs/runtime/bunfig.md')
-rw-r--r-- | docs/runtime/bunfig.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/runtime/bunfig.md b/docs/runtime/bunfig.md index 83f66b1b1..49c7513b1 100644 --- a/docs/runtime/bunfig.md +++ b/docs/runtime/bunfig.md @@ -216,6 +216,17 @@ Whether to install peer dependencies. Default `false`. peer = false ``` +### `install.github.api` + +Enable using the github REST API to install github dependencies. Default `true`. + +Private github repositories will fail to install if this option is true because the REST API is unauthenticated. + +```toml +[install] +github.api = true +``` + ### `install.production` Whether `bun install` will run in "production mode". Default `false`. |