Ignore vendor scripts

This commit is contained in:
Ruud
2014-12-05 15:14:36 +01:00
parent 3852fc720d
commit 858d8b4291
+3 -2
View File
@@ -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
}