Skip to content

Commit

Permalink
Add hint about '--save-dev' in installation section
Browse files Browse the repository at this point in the history
  • Loading branch information
paescuj committed Nov 18, 2022
1 parent 744309b commit d003e1f
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions README.md
Expand Up @@ -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` |

<sub>* 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.</sub>

## Usage

Expand Down

0 comments on commit d003e1f

Please sign in to comment.