Skip to content
Nicole Sullivan edited this page Aug 15, 2013 · 3 revisions

Creating a new release with Grunt is relatively easy. Most tasks will be done for you via automated grunt tasks.

  1. Modify the release number in package.json (we use semantic versioning, so choose your version number wisely)
  2. Run grunt release
  3. Commit the release directory and the CHANGELOG file: git commit -m "Release v<release number>"
  4. Tag the release git tag v<release number>
  5. Push the commit and the tag git push && git push --tags

If you need examples to follow you can see both the CHANGELOG and the release history on github.

Next, you are ready to release to the website. Documentation for that push process can be found in the website repo.

Clone this wiki locally