Merge pull request #24171 from woocommerce/fix/checktextdomain-packages

Exclude package vendor folders from checktextdomain call
This commit is contained in:
Gerhard Potgieter 2019-07-16 18:59:43 +02:00 committed by GitHub
commit d034131781
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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
} }