diff options
author | 2023-07-30 15:41:51 +0200 | |
---|---|---|
committer | 2023-07-30 06:41:51 -0700 | |
commit | 0ea59b4c93e2fa285955e9129b3f219b07e30779 (patch) | |
tree | 43d3d4dce3c75fb079e85edd31b067d217322d3d /docs/cli/install.md | |
parent | b0d3ea5a43d2462fafbe11f306d0eecd463e256b (diff) | |
download | bun-0ea59b4c93e2fa285955e9129b3f219b07e30779.tar.gz bun-0ea59b4c93e2fa285955e9129b3f219b07e30779.tar.zst bun-0ea59b4c93e2fa285955e9129b3f219b07e30779.zip |
Update install.md (#3890)
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`): |