Merge pull request #24171 from woocommerce/fix/checktextdomain-packages
Exclude package vendor folders from checktextdomain call
This commit is contained in:
commit
d034131781
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue