Skip to content

Commit

Permalink
Split npm & yarn install commands
Browse files Browse the repository at this point in the history
Close #178. Allows developer to just copy/paste, which avoids the danger from typo squatting.
  • Loading branch information
plocket committed Nov 27, 2023
1 parent 70356a5 commit 08b967b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,13 @@ Main goal of this library is to provide relevant error messages like the followi
## Installation

```bash
$ npm i better-ajv-errors
$ # Or
$ yarn add better-ajv-errors
npm i better-ajv-errors
```

Or

```bash
yarn add better-ajv-errors
```

Also make sure that you installed [ajv](https://www.npmjs.com/package/ajv) package to validate data against JSON schemas.
Expand Down

0 comments on commit 08b967b

Please sign in to comment.