Skip to content

Commit

Permalink
Update CONTRIBUTING.md to reflect the necessary steps (yarnpkg#2020)
Browse files Browse the repository at this point in the history
* Update CONTRIBUTING.md to reflect the necessary steps

* Fix CONTRIBUTING.md

* Fix CONTRIBUTING.md

* Replace npm with yarn
  • Loading branch information
DenisGorbachev authored and bestander committed Nov 24, 2016
1 parent 3ef999c commit c505b12
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,32 +5,35 @@ please read the [code of conduct](CODE_OF_CONDUCT.md).

## Setup

> Install yarn on your system: https://yarnpkg.com/en/docs/install
1. Install yarn on your system: https://yarnpkg.com/en/docs/install
1. Fork the repo: https://github.com/yarnpkg/yarn
1. Run the following commands:

```sh
$ git clone https://github.com/yarnpkg/yarn.git
$ git clone YOUR_YARN_REPO_URL
$ cd yarn
$ yarn
$ yarn run build
```

## Building

```sh
$ npm run build
$ yarn run build
```

```sh
$ npm run watch
$ yarn run watch
```

## Testing

```sh
$ npm run test
$ yarn run test
```

```sh
$ npm run lint
$ yarn run lint
```

## Pull Requests
Expand Down

0 comments on commit c505b12

Please sign in to comment.