Skip to content

Commit

Permalink
docs(readme): prefer yarn over npm
Browse files Browse the repository at this point in the history
  • Loading branch information
haltcase committed Jul 12, 2019
1 parent 2607c21 commit f31193e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ if you'd like to see how these can be useful.

## installation

```console
npm i --save-dev param.macro
```sh
yarn add --dev param.macro
```

Make sure you also have [Babel][babel] and [babel-plugin-macros][babel-plugin-macros]
installed (the following use Babel v7, see [_usage_](#usage) for more):

```console
npm i --save-dev @babel/cli @babel/core babel-plugin-macros
```sh
yarn add --dev @babel/cli @babel/core babel-plugin-macros
```

... and configured with Babel:
Expand Down Expand Up @@ -451,9 +451,9 @@ was provided.
1. Clone the repo: `git clone https://github.com/citycide/param.macro.git`
2. Move into the new directory: `cd param.macro`
3. Install dependencies: `npm install`
4. Build the source: `npm run build`
5. Run tests: `npm test`
3. Install dependencies: `yarn` or `npm install`
4. Build the source: `yarn build` or `npm run build`
5. Run tests: `yarn test` or `npm test`

> this project uses itself in its source, so you can use `param.macro` while you
develop `param.macro` ([_... yo dawg_](https://knowyourmeme.com/memes/xzibit-yo-dawg))
Expand Down

0 comments on commit f31193e

Please # to comment.