diff options
author | 2023-06-11 09:26:46 -0700 | |
---|---|---|
committer | 2023-06-11 09:26:46 -0700 | |
commit | 50a18b6bacd8a3e27f4ac82fb5cc38eb9a5f3029 (patch) | |
tree | 376ade74ca489998fb66b47d32ba176f44ec9ad6 /docs/cli | |
parent | 9a8d9b5e91078feada22563bb79a77a4a316f1e5 (diff) | |
download | bun-50a18b6bacd8a3e27f4ac82fb5cc38eb9a5f3029.tar.gz bun-50a18b6bacd8a3e27f4ac82fb5cc38eb9a5f3029.tar.zst bun-50a18b6bacd8a3e27f4ac82fb5cc38eb9a5f3029.zip |
doc: minor fixes (#3278)
* `bun link` only modifies `package.json` when `--save` is passed.
* clang-15 is a separate package from llvm-15.
Diffstat (limited to 'docs/cli')
-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 811c9ec95..695c975f9 100644 --- a/docs/cli/install.md +++ b/docs/cli/install.md @@ -185,7 +185,7 @@ $ cd /path/to/my-app $ bun link cool-pkg ``` -This will add `cool-pkg` to the `dependencies` field of your app's package.json with a special version specifier that tells Bun to load from the registered local directory instead of installing from `npm`. +In addition, the `--save` flag can be used to add `cool-pkg` to the `dependencies` field of your app's package.json with a special version specifier that tells Bun to load from the registered local directory instead of installing from `npm`: ```json-diff { |