From d2f310bc5a13cba025a69092e1fe2aecdc40dc6d Mon Sep 17 00:00:00 2001 From: Eric Willigers Date: Wed, 1 Mar 2017 17:09:40 +1100 Subject: [PATCH] No need to install grunt globally grunt is listed in our devDependencies already. Our CONTRIBUTING.md was instructing people to also install grunt globally. This isn't necessary. Each project can use its own version of grunt. Only grunt-cli needs to be installed globally. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6cd8a679..808040fa 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -7,7 +7,7 @@ 1. `git submodule update --init --recursive` (Necessary for running tests.) 1. Install [node](https://nodejs.org/en/) and make sure `npm` is in your $PATH 1. Run `npm install` in the respository to pull in development dependencies. -1. Run `npm install -g grunt grunt-cli` to get the build tools for the command line. +1. Run `npm install -g grunt-cli` to get the build tools for the command line. ### Contributing