From ab79940e6a621b902589016d58bec92e33fdebb6 Mon Sep 17 00:00:00 2001 From: LuisAFK Date: Mon, 22 Apr 2024 03:03:17 +0200 Subject: [PATCH] Fix typo in workspaces docs "pacakges" (#10417) --- docs/install/workspaces.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/install/workspaces.md b/docs/install/workspaces.md index 0203ef159bf6a0..b76acc8a6e92f9 100644 --- a/docs/install/workspaces.md +++ b/docs/install/workspaces.md @@ -61,7 +61,7 @@ Workspaces have a couple major benefits. - **Code can be split into logical parts.** If one package relies on another, you can simply add it as a dependency in `package.json`. If package `b` depends on `a`, `bun install` will install your local `packages/a` directory into `node_modules` instead of downloading it from the npm registry. - **Dependencies can be de-duplicated.** If `a` and `b` share a common dependency, it will be _hoisted_ to the root `node_modules` directory. This reduces redundant disk usage and minimizes "dependency hell" issues associated with having multiple versions of a package installed simultaneously. -- **Run scripts in multiple pacakges.** You can use the [`--filter` flag](/docs/cli/filter) to easily run `package.json` scripts in multiple packages in your workspace. +- **Run scripts in multiple packages.** You can use the [`--filter` flag](/docs/cli/filter) to easily run `package.json` scripts in multiple packages in your workspace. {% callout %} ⚡️ **Speed** — Installs are fast, even for big monorepos. Bun installs the [Remix](https://github.com/remix-run/remix) monorepo in about `500ms` on Linux.