Skip to content

Commit

Permalink
Merge pull request #1821 from johnjbarton/doc-dev-install-1817
Browse files Browse the repository at this point in the history
docs: Update install-for-development instructions.
  • Loading branch information
dignifiedquire committed Jan 23, 2016
2 parents 72edf6c + 5b678a1 commit 3f1d934
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 3f1d934

Please sign in to comment.