diff options
author | 2023-08-04 20:41:16 -0700 | |
---|---|---|
committer | 2023-08-04 20:41:16 -0700 | |
commit | 78081cbb40b3149be3fcd7f050ec365c499421d0 (patch) | |
tree | 50cafc60e3a69323352a0b00b0acdb1b04382a02 /docs/install/index.md | |
parent | 6bdee80cfce0205ea1b59679fda93f816a66eed0 (diff) | |
download | bun-78081cbb40b3149be3fcd7f050ec365c499421d0.tar.gz bun-78081cbb40b3149be3fcd7f050ec365c499421d0.tar.zst bun-78081cbb40b3149be3fcd7f050ec365c499421d0.zip |
Support --dev/-D and support more flags on bun install (#3989)
Diffstat (limited to 'docs/install/index.md')
-rw-r--r-- | docs/install/index.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/install/index.md b/docs/install/index.md index 162a4abac..540ade9f0 100644 --- a/docs/install/index.md +++ b/docs/install/index.md @@ -114,7 +114,7 @@ $ bun add zod@latest To add a package as a dev dependency (`"devDependencies"`): ```bash -$ bun add --development @types/react +$ bun add --dev @types/react $ bun add -d @types/react ``` |