Exclude package vendor folders from checktextdomain call

This commit is contained in:
Gerhard 2019-07-16 18:55:29 +02:00
parent 651aa3dd48
commit 982da28730
1 changed files with 2 additions and 1 deletions

View File

@ -233,7 +233,8 @@ module.exports = function( grunt ) {
'!node_modules/**', // Exclude node_modules/
'!tests/**', // Exclude tests/
'!vendor/**', // Exclude vendor/
'!tmp/**' // Exclude tmp/
'!tmp/**', // Exclude tmp/
'!packages/*/vendor/**' // Exclude packages/*/vendor
],
expand: true
}