#Setup
- Fork please.js and clone it on your system.
- Create a new branch out off
masterfor your fix/feature.git checkout new-feature master
#Building
please.js uses Grunt for the build process which you need to have installed on your system.
To install all the dependencies, run npm install.
Once you have the dependencies installed, run grunt from the project directory.
#Things to remember
-
Do not fix multiple issues in a single commit. Keep them one thing per commit so that they can be picked easily incase only few commits require to be merged.
-
Version 0.1.7 onwards, the
masterbranch will only contain stable releases that have been well tested. So when sending a pull request, please sending againstdevelopinstead ofmaster. -
Before submitting a patch, rebase your branch on upstream
developto make life easier for the merger. -
DO NOT add the library builds (
please.min.js) in your commits.