diff options
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`. |