Thanks for considering contributing to Big Ideas Text!
If you find a bug, please feel free to open an issue.
If you taking the time to mention a problem, even a seemingly minor one, it is greatly appreciated, and a totally valid contribution to this project. Thank you!
To get started locally, run these commands:
git clone https://github.com/kennethormandy/big-ideas-text
npm install
npm start
You should’t really need to use the Grunt commands directly if you don’t want; npm install, npm start, and npm test should be sufficient.
If you want to dig into it, the Grunt setup is entirely from BigText. @zackleat writes:
Rather than one giant
Gruntfile.js, this project is using a modular Grunt setup. Each individual grunt configuration option key has its own file located ingrunt/config-lib/(readonly upstream configs, do not modify these directly) orgrunt/config/(project specific configs). You may use the same key in both directories, the objects are smartly combined using Lo-Dash merge. For concatenation in the previous Gruntfile setup, you’d add another key to the giant object passed intogrunt.initConfiglike this:grunt.initConfig({ concat: { /* YOUR CONFIG */ } });. In the new configuration, you’ll create agrunt/config/concat.jswithmodule.exports = { /* YOUR CONFIG */ };.
We love pull requests. Here’s a quick guide:
- Fork this repository and then clone it locally:
git clone https://github.com/kennethormandy/big-ideas-text- Create a topic branch for your changes. I like to preface my branches with my initials:
git checkout -b ko-fix-for-that-thing- Commit a failing test for the bug:
git commit -am "Adds a failing test to demonstrate that thing"- Commit a fix that makes the test pass:
git commit -am "Adds a fix for that thing!"- Run the tests:
npm test- If everything looks good, push to your fork:
git push origin fix-for-that-thing-
Enjoy being the wonderful person you are
After you’ve opened your pull request, you should email me your mailing address so I can mail you a personal thank you note. Seriously!
Thinking of adding a new feature? Cool! Open an issue and let’s design it together.