From 858d8b4291a07f88750883c7f960c4a714a08fd6 Mon Sep 17 00:00:00 2001 From: Ruud Date: Fri, 5 Dec 2014 15:14:36 +0100 Subject: [PATCH] Ignore vendor scripts --- Gruntfile.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index cac33a4..09d4e52 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -23,7 +23,8 @@ module.exports = function(grunt){ devel: true }, all: [ - '<%= config.base %>/{,**/}*.js' + '<%= config.base %>/{,**/}*.js', + '!<%= config.base %>/static/scripts/vendor/{,**/}*.js' ] }, @@ -80,7 +81,7 @@ module.exports = function(grunt){ files: [ '<%= config.base %>/**/*.js' ], - tasks: ['jshint', 'uglify'], + tasks: ['jshint'], options: { 'livereload': true }