Skip to content

Commit

Permalink
docs: Update install-for-development instructions.
Browse files Browse the repository at this point in the history
The dev instructions miss few steps making it harder to get started
with contributions.

Fixes #1817
  • Loading branch information
johnjbarton committed Jan 23, 2016
1 parent 56073fc commit 5b678a1
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion docs/dev/02-making-changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,20 @@ Here are some tips on how to set up a Karma workspace and how to send a good pul

* Make sure you have a [GitHub account](https://github.com/signup/free).
* [Fork the repository] on GitHub.
* Clone your fork.
* Clone your fork
```bash
$ git clone https://github.com/<your-username>/karma.git
$ cd karma
```
* Install for development. Use a recent npm version, ignore peerdep warnings
```bash
$ npm install
$ rm -rf node_modules/karma
$ cd node_modules
$ ln -s ../ karma
$ cd ../
$ grunt browserify
```

## Testing and Building
- Run the tests via:
Expand Down

0 comments on commit 5b678a1

Please sign in to comment.