Browse Source

Ignore vendor scripts

pull/5180/head
Ruud 11 years ago
parent
commit
858d8b4291
  1. 5
      Gruntfile.js

5
Gruntfile.js

@ -23,7 +23,8 @@ module.exports = function(grunt){
devel: true devel: true
}, },
all: [ all: [
'<%= config.base %>/{,**/}*.js' '<%= config.base %>/{,**/}*.js',
'!<%= config.base %>/static/scripts/vendor/{,**/}*.js'
] ]
}, },
@ -80,7 +81,7 @@ module.exports = function(grunt){
files: [ files: [
'<%= config.base %>/**/*.js' '<%= config.base %>/**/*.js'
], ],
tasks: ['jshint', 'uglify'], tasks: ['jshint'],
options: { options: {
'livereload': true 'livereload': true
} }

Loading…
Cancel
Save