Skip to content
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

Support for react native 0.59^ #10

Open
azi1 opened this issue Mar 26, 2019 · 4 comments
Open

Support for react native 0.59^ #10

azi1 opened this issue Mar 26, 2019 · 4 comments

Comments

@azi1
Copy link

azi1 commented Mar 26, 2019

are there same configuration for react native 0.59 version. if it is it's not working at all. even if my trace option is true. i cannot see anything in my console when making the build. any advice?

@chrisbobbe
Copy link

I'm getting this, with React Native 0.59.1 and react-native-obfuscating-transformer 1.0.0:

info { Error: Cannot find module 'metro/src/reactNativeTransformer'
info     at Function.Module._resolveFilename (module.js:548:15)
info     at Function.Module._load (module.js:475:25)
info     at Module.require (module.js:597:17)
info     at require (internal/module.js:11:18)
info     at Object.getMetroTransformer (/Users/sgidev-005/dev/pregis2/iOsMaxwellMedia/node_modules/react-native-obfuscating-transformer/dist/getMetroTransformer.js:19:16)

info     at obfuscatingTransformer (/Users/sgidev-005/dev/pregis2/iOsMaxwellMedia/node_modules/react-native-obfuscating-transformer/dist/obfuscatingTransformer.js:38:208)
info     at Object.<anonymous> (/Users/sgidev-005/dev/pregis2/iOsMaxwellMedia/transformer.js:6:22)
info     at Module._compile (module.js:653:30)
info     at Object.Module._extensions..js (module.js:664:10)
info     at Module.load (module.js:566:32) code: 'MODULE_NOT_FOUND' }
info error Cannot read property 'transformFile' of undefined

The file metro/src/reactNativeTransformer does not exist in version 0.51.1 of Metro, which is what RN 0.59.1 uses. In fact, I'm having a lot of difficulty finding any version of Metro that has the file metro/src/reactNativeTransformer... does anyone know if it was replaced by the contents of JSTransformer?

@chrisbobbe
Copy link

The only place I can find metro/src/reactNativeTransformer is on a fork of Metro by Invertase: https://github.com/invertase/metro/blob/81762b72e4cd3950171b4d90906740007736f6d6/packages/metro/src/reactNativeTransformer.js

@kida7
Copy link

kida7 commented May 8, 2019

Just add this line to ./transformer.js

 module.exports = obfuscatingTransformer({
     /* Insert here any required configuration */
+    upstreamTransformer: require("metro-react-native-babel-transformer"),

@me21
Copy link

me21 commented May 15, 2019

Seems I'm missing something...

Here's my rn-cli.config.js file:

module.exports = {
 getTransformModulePath() {
   return require.resolve("./transformer")
 },
}

Here's my transformer.js file:

const obfuscatingTransformer = require("react-native-obfuscating-transformer");

module.exports = obfuscatingTransformer({
    /* Insert here any required configuration */
    emitObfuscatedFiles: true,
    upstreamTransformer: require("metro-react-native-babel-transformer"),
    trace: true,
    enableInDevelopment: true
});

There is App.js file in src subfolder of the project.

I call react-native run-android but no obfuscated files appear inside my src subfoler. And no trace related to obfuscation. How can I check that obfuscator has been executed?

I suspect that in RN 0.59 metro.config.js file should be edited instead.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants