-
-
Notifications
You must be signed in to change notification settings - Fork 421
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Maximum call stack size exceeded with some settings #493
Maximum call stack size exceeded with some settings #493
Comments
would you be able to setup a minimal reproduction repository? |
@mashpie here is it : https://github.com/thib3113/i18n-493-issue . But, it's mostly :
Setting |
Thanks, will look into it over weekend probably |
Thank you @thib3113 for reporting and analysing. Your guess for a fix was also perfectly right. I've just added tests to cover your issue. A new version |
I think I found a bug,
I'm using version 0.14.1 .
I'm using the options :
So when I translate :
i18nTranslate
=> calltranslate
translate
see(!skipSyncToAllFiles && syncFiles) === true
=> callsyncToAllFiles
syncToAllFiles
=> calltranslate
withskipSyncToAllFiles = true
translate
go to here (same here) => call translate file withoutskipSyncToAllFiles
translate
see(!skipSyncToAllFiles && syncFiles) === true
=> callsyncToAllFiles
(and then, restart the loop) .Maybe passing syncToAllFiles here and here, can be a quick fix
The text was updated successfully, but these errors were encountered: