From: Iskren Chernev Date: Thu, 16 Jan 2014 20:43:23 +0000 (-0800) Subject: Add developer instructions in readme.md X-Git-Tag: 2.5.1~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4b58b66381b2a4b6861b29e7fc7cb8dbc9acfacb;p=thirdparty%2Fmoment.git Add developer instructions in readme.md --- diff --git a/readme.md b/readme.md index 1469d2567..22fb216e6 100644 --- a/readme.md +++ b/readme.md @@ -28,6 +28,22 @@ Develop [![Build Status](https://travis-ci.org/moment/moment.png?branch=develop) Master [![Build Status](https://travis-ci.org/moment/moment.png?branch=master)](https://travis-ci.org/moment/moment) +For developers +============== + +You need [node](http://nodejs.org/), use [nvm](https://github.com/creationix/nvm) or [nenv](https://github.com/ryuone/nenv) to install it. + +Then, in your shell + +```bash +git clone https://github.com/moment/moment.git +cd moment +npm install -g grunt-cli +npm install +git checkout develop # all patches against develop branch, please! +grunt # this runs tests and jshint +``` + Changelog =========