Skip to content

Commit

Permalink
Swapped the order of plugin includes in Gruntfile.js so that watch is…
Browse files Browse the repository at this point in the history
… loaded before express, to get rid of a notification in terminal when launching grunt.
  • Loading branch information
akikoo committed Oct 13, 2013
1 parent fa344ed commit ebdd5ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -469,8 +469,8 @@ module.exports = function (grunt) {


// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-express');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-express');
grunt.loadNpmTasks('grunt-contrib-compass');
grunt.loadNpmTasks('grunt-contrib-csslint');
grunt.loadNpmTasks('grunt-contrib-jshint');
Expand Down

0 comments on commit ebdd5ae

Please sign in to comment.