From 5b678a17abb7d36ebe756fa71bef424cc30cafe8 Mon Sep 17 00:00:00 2001 From: johnjbarton Date: Fri, 22 Jan 2016 17:11:23 -0800 Subject: [PATCH] docs: Update install-for-development instructions. The dev instructions miss few steps making it harder to get started with contributions. Fixes #1817 --- docs/dev/02-making-changes.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/dev/02-making-changes.md b/docs/dev/02-making-changes.md index 8578e776e..31c566e91 100644 --- a/docs/dev/02-making-changes.md +++ b/docs/dev/02-making-changes.md @@ -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//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: