diff options
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 584350a42..02f095d61 100644 --- a/docs/cli/install.md +++ b/docs/cli/install.md @@ -40,7 +40,7 @@ On Linux, `bun install` tends to install packages 20-100x faster than `npm insta Running `bun install` will: - **Install** all `dependencies`, `devDependencies`, and `optionalDependencies`. Bun does not install `peerDependencies` by default. -- **Run** your project's `{pre|post}install` scripts at the appropriate time. For security reasons Bun _does not execute_ lifecycle scripts of installed dependencies. +- **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`): |