This repository was archived by the owner on Jul 16, 2020. It is now read-only.

Description
Assuming a directory structure of:
- lang
- en
- file_name_1.php
- directory_name
- file_name_2.php
And in the config file:
'excludes' => [
'file_name_1', /* Works */
"directory_name", /* Doesn't work */
],
When art vue-i18n:generate is run, then everything inside directory_name will be included in the output file.
Placing directory_name/file_name_2' into the excludes` array is a workaround, but it doesn't suit my use case.