From 50a18b6bacd8a3e27f4ac82fb5cc38eb9a5f3029 Mon Sep 17 00:00:00 2001 From: Keyhan Vakil Date: Sun, 11 Jun 2023 09:26:46 -0700 Subject: [PATCH] doc: minor fixes (#3278) * `bun link` only modifies `package.json` when `--save` is passed. * clang-15 is a separate package from llvm-15. --- docs/cli/install.md | 2 +- docs/project/development.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/cli/install.md b/docs/cli/install.md index 811c9ec95c..695c975f9c 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 { diff --git a/docs/project/development.md b/docs/project/development.md index b592237761..92a414c5ff 100644 --- a/docs/project/development.md +++ b/docs/project/development.md @@ -42,7 +42,7 @@ $ brew install llvm@15 ```bash#Ubuntu/Debian # On Ubuntu 22.04 and newer, LLVM 15 is available in the default repositories -$ sudo apt install llvm-15 lld-15 +$ sudo apt install llvm-15 lld-15 clang-15 # On older versions, $ wget https://apt.llvm.org/llvm.sh -O - | sudo bash -s -- 15 all ```