diff options
author | 2023-09-14 14:51:39 -0700 | |
---|---|---|
committer | 2023-09-14 14:51:42 -0700 | |
commit | 96a1d5382fa6d91af1a315a6dc2dee449e66d846 (patch) | |
tree | 4b7ecb1c85300ebb86fb8e88d944622313159e6f /docs/cli/install.md | |
parent | e923e2327077060e09e8ff0a9f21bb91047632e2 (diff) | |
download | bun-96a1d5382fa6d91af1a315a6dc2dee449e66d846.tar.gz bun-96a1d5382fa6d91af1a315a6dc2dee449e66d846.tar.zst bun-96a1d5382fa6d91af1a315a6dc2dee449e66d846.zip |
Improve docs
Diffstat (limited to 'docs/cli/install.md')
-rw-r--r-- | docs/cli/install.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/cli/install.md b/docs/cli/install.md index beaf6ca47..4aa4e7816 100644 --- a/docs/cli/install.md +++ b/docs/cli/install.md @@ -43,7 +43,7 @@ Running `bun install` will: - **Run** your project's `{pre|post}install` and `{pre|post}prepare` scripts at the appropriate time. For security reasons Bun _does not execute_ lifecycle scripts of installed dependencies. - **Write** a `bun.lockb` lockfile to the project root. -To install in production mode (i.e. without `devDependencies`): +To install in production mode (i.e. without `devDependencies` or `optionalDependencies`): ```bash $ bun install --production |