build: Exclude composer vendor folder

Change-Id: I23d5eabaaa0c13d33f94164a772c2c0b384d1c79
This commit is contained in:
Umherirrender 2017-08-03 15:02:59 +02:00
parent f481c339de
commit 82a68cffec

View file

@ -10,14 +10,17 @@ module.exports = function ( grunt ) {
all: [
'*.js',
'**/*.js',
'!node_modules/**'
'!node_modules/**',
'!vendor/**'
]
},
jsonlint: {
all: [
'*.json',
'**/*.json',
'!node_modules/**'
'.stylelintrc',
'!node_modules/**',
'!vendor/**'
]
},
banana: conf.MessagesDirs,
@ -28,7 +31,8 @@ module.exports = function ( grunt ) {
all: [
'*.{le,c}ss',
'**/*.{le,c}ss',
'!node_modules/**'
'!node_modules/**',
'!vendor/**'
]
}
} );