build: Exclude composer vendor folder

Change-Id: I7156ba5eb000bdcd29aba009d8ce8c030f8d2f11
This commit is contained in:
Umherirrender 2017-08-03 15:03:07 +02:00
parent af8abcd1ce
commit b1dff6dc3f
1 changed files with 7 additions and 3 deletions

View File

@ -11,14 +11,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,
@ -30,7 +33,8 @@ module.exports = function ( grunt ) {
'*.{less,css}',
'**/*.{less,css}',
'!node_modules/**',
'!skinStyles/jquery.ui/**'
'!skinStyles/jquery.ui/**',
'!vendor/**'
]
}
} );