From d003e1fff8c2ba343b37b0b6c6f65e64547d88ed Mon Sep 17 00:00:00 2001 From: Pascal Jufer Date: Fri, 18 Nov 2022 14:21:53 +0100 Subject: [PATCH] Add hint about '--save-dev' in installation section --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6976479e..264075f7 100644 --- a/README.md +++ b/README.md @@ -45,10 +45,12 @@ tired of opening terminals and made **concurrently**. **concurrently** can be installed in the global scope (if you'd like to have it available and use it on the whole system) or locally for a specific package (for example if you'd like to use it in the `scripts` section of your package): -| | npm | Yarn | pnpm | -| ---------- | ----------------------- | ------------------------------ | -------------------------- | -| **Global** | `npm i -g concurrently` | `yarn global add concurrently` | `pnpm add -g concurrently` | -| **Local** | `npm i concurrently -D` | `yarn add concurrently -D` | `pnpm add -D concurrently` | +| | npm | Yarn | pnpm | +| ----------- | ----------------------- | ------------------------------ | -------------------------- | +| **Global** | `npm i -g concurrently` | `yarn global add concurrently` | `pnpm add -g concurrently` | +| **Local*** | `npm i concurrently -D` | `yarn add concurrently -D` | `pnpm add -D concurrently` | + +* It's recommended to add **concurrently** as `devDependencies` as it's usually only used for developing purposes. Please change this flag if it doesn't apply in your case. ## Usage