Skip to content

Commit

Permalink
rework dev / build targets
Browse files Browse the repository at this point in the history
  • Loading branch information
gsemet committed Oct 19, 2014
1 parent c9c80eb commit 995e3bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,9 @@ module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-coffee');

grunt.registerTask('default', ['jade', 'copy', 'coffee', 'less', 'jshint:beforeConcat', 'concat', 'jshint:afterConcat', 'uglify']);
grunt.registerTask('build', ['default']);
grunt.registerTask('build', ['jade', 'copy', 'coffee', 'less', 'jshint:beforeConcat', 'concat', 'jshint:afterConcat', 'uglify']);
grunt.registerTask('dev', ['jade', 'copy', 'coffee', 'less']);
grunt.registerTask('serve', ['connect']);
grunt.registerTask('livereload', ['default', 'watch']);
grunt.registerTask('livereload', ['dev', 'watch']);

};

0 comments on commit 995e3bc

Please sign in to comment.