Skip to content

Commit

Permalink
Use correct build with ci and default grunt tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasvh committed Sep 8, 2014
1 parent 44b958b commit 281efd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ module.exports = function(grunt) {

grunt.registerTask('server', ['connect:cors', 'connect']);
grunt.registerTask('build', ['execute', 'concat', 'uglify']);
grunt.registerTask('default', ['jshint', 'concat', 'qunit', 'uglify']);
grunt.registerTask('travis', ['jshint', 'concat','qunit', 'uglify', 'connect:ci', 'connect:cors', 'webdriver']);
grunt.registerTask('default', ['jshint', 'build', 'qunit']);
grunt.registerTask('travis', ['jshint', 'build','qunit', 'connect:ci', 'connect:cors', 'webdriver']);

};

0 comments on commit 281efd2

Please sign in to comment.