-
Notifications
You must be signed in to change notification settings - Fork 100
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
Files not being obfuscated #32
Comments
Hi @rohitmodi12, how you can solve i'm using react-native 0.59.8 thanks |
Hello, instead of babelTransformerPath: require.resolve("./transformer") Through this you can resolve this issue but I am not able to generate obfuscated code. If you are able then let me know. |
replacing
with fix the issue below: this may help someone else's problem. |
Previously I am facing this issue:
"TypeError: Cannot read property 'transformFile' of undefined"
But It is resolved by this code.
getTransformModulePath: () => {
return require.resolve('./transformer');
}
But after creating build, code is not being obfuscated.
And I want to obfuscate single file instead of "src" folder.
Please help.
Thanks.
The text was updated successfully, but these errors were encountered: