Skip to content

Commit

Permalink
V0.5.0
Browse files Browse the repository at this point in the history
Introduce Travis CI for unit tests and code coverage.
Removed support for Jade.
Added badges.
Reformatted code and README.md.
  • Loading branch information
Richard Quadling authored and Richard Quadling committed Jul 19, 2017
1 parent c0527cf commit bb8c5d3
Show file tree
Hide file tree
Showing 20 changed files with 2,551 additions and 2,291 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
npm-debug.log
tmp
coverage
12 changes: 12 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
language: node_js
sudo: false
node_js:
- "4.1"
- "4.0"
install:
- npm install
before_script:
- npm install grunt-cli istanbul -g
script:
- istanbul cover grunt test
- grunt coveralls
Loading

0 comments on commit bb8c5d3

Please sign in to comment.