Releases
Releases are published to [NPM]
Perform a Releases
To perform a release do the following:
- Bump the version
- Publish the module
This can be accomplished by running the following commands:
$ npm version minor
$ npm publish
Documentation
To generate JSDoc and coverage reports locally, run
$ npm run doc
$ npm run cover
To serve a local version of the GitHub Pages site, run
$ bundle install
$ cd docs
$ bundle exec jekyll serve
and navigate a browser to http://127.0.0.1:4000/
Adding Documentation Pages
Add markdown files to docs/_pages. Files must have a frontmatter header with, at least, the following attributes:
---
layout: default
title: Documentation
icon: tags
order: 200
---
iconis the Font Awesome icon that will be used in the generated navigation paneorderdefines the sorting behavior of pages in the generated navigation pane
Pages are rendered by Jekyll and can include Liquid template tags and filters.