fix: ignore vendor bin at transifex sync

```php
echo count(array_filter($translatableFiles, fn($v) => strpos($v, "vendor-bin")));
```
Output: 9320

After this change was found any entry with vendor-bin

```php
count(array_filter($translatableFiles, fn($v) => strpos($v, "vendor-bin")));
```
Output: 0

This could affect the translatable strings that is send do Transifex.

Signed-off-by: Vitor Mattos <vitor@php.rio>
This commit is contained in:
Vitor Mattos 2025-06-23 13:45:07 -03:00
parent 2dd456bf39
commit 57c67e110d
No known key found for this signature in database
GPG key ID: B7AB4B76A7CA7318

View file

@ -9,3 +9,4 @@ js/
node_modules/
tests/
vendor/
vendor-bin/