react-native-alipay
react-native-alipay copied to clipboard
在使用babel6的情况下,如果第三方module是基于babel5的且存在.babelrc文件,xcode编译的时候会报错
可以删除第三模块的.babelrc来解决这个问题 "scripts": { "clean:babelrc": "find ./node_modules -name react-packager -prune -o -name '.babelrc' -print | xargs rm -f", "postinstall": "npm run clean:babelrc" }
:+1: :+1: 可以提个 PR