Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,13 @@ The core team will be monitoring for pull requests. When we get one, we'll run s
npm install
```

3. If you've added code that should be tested, add tests. You
3. Run `lerna bootstrap`.

```sh
lerna bootstrap
```

4. If you've added code that should be tested, add tests. You
can use watch mode that continuously transforms changed files
to make your life easier.

Expand All @@ -43,9 +49,9 @@ The core team will be monitoring for pull requests. When we get one, we'll run s
npm run watch
```

4. If you've changed APIs, update the documentation.
5. Ensure the test suite passes via `npm test`.
6. If you haven't already, complete the CLA.
5. If you've changed APIs, update the documentation.
6. Ensure the test suite passes via `npm test`.
7. If you haven't already, complete the CLA.

### Contributor License Agreement (CLA)

Expand Down