Skip to content
This repository has been archived by the owner on Apr 21, 2020. It is now read-only.

Commit

Permalink
Begin using grunt.
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanbreen committed Dec 11, 2014
1 parent 0078374 commit ea06f2c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module.exports = function(grunt) {
grunt.initConfig({
coveralls: {
options: {
src: 'reports/lcov.info',
}
}
});

grunt.loadNpmTasks('grunt-coveralls');

// Default task(s).
grunt.registerTask('default', ['coveralls']);
}
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
"compression": "1.0.6",
"coveralls": "^2.11.2",
"express": "4.0.0",
"grunt": "^0.4.5",
"grunt-coveralls": "^1.0.0",
"istanbul": "0.2.11",
"method-override": "1.0.2",
"mocha": "^1.21.4",
Expand Down

0 comments on commit ea06f2c

Please sign in to comment.