Exclude package vendor folders from checktextdomain call
This commit is contained in:
parent
651aa3dd48
commit
982da28730
|
@ -233,7 +233,8 @@ module.exports = function( grunt ) {
|
||||||
'!node_modules/**', // Exclude node_modules/
|
'!node_modules/**', // Exclude node_modules/
|
||||||
'!tests/**', // Exclude tests/
|
'!tests/**', // Exclude tests/
|
||||||
'!vendor/**', // Exclude vendor/
|
'!vendor/**', // Exclude vendor/
|
||||||
'!tmp/**' // Exclude tmp/
|
'!tmp/**', // Exclude tmp/
|
||||||
|
'!packages/*/vendor/**' // Exclude packages/*/vendor
|
||||||
],
|
],
|
||||||
expand: true
|
expand: true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue