Skip to content

Commit

Permalink
fixed the issue with grunt
Browse files Browse the repository at this point in the history
  • Loading branch information
supernomad committed Jul 3, 2015
1 parent 4ffcd02 commit 032e881
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,8 @@ module.exports = function(grunt) {
});

grunt.registerTask('test', ['mkdir:testDir', 'mocha_istanbul:coverage']);
grunt.registerTask('codacy', ['codacy:coverage']);
grunt.registerTask('coveralls', ['coveralls:coverage']);
grunt.registerTask('coverage', ['codacy:coverage', 'coveralls:coverage']);

grunt.registerTask('ci', ['test', 'codacy', 'coveralls']);
grunt.registerTask('ci', ['test', 'coverage']);
grunt.registerTask('default', ['test']);
};

0 comments on commit 032e881

Please sign in to comment.