-
Notifications
You must be signed in to change notification settings - Fork 181
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
Naming collision #34
Comments
Hi @rayronvictor , thank you for the issue. This behavior seems to be caused by some I've researched into this issue and there's a way to have the React-Native packager ignore some paths in your project, so you don't get the warnings anymore: facebook/react-native#7271 Based on that issue, I've been able to eliminate the warnings on React Native 0.52.0 by including the following const blacklist = require('metro/src/blacklist');
module.exports = {
getBlacklistRE: function() {
return blacklist([
/nodejs-assets\/.*/,
/android\/.*/,
/ios\/.*/
]);
},
}; This will make the packager ignore the I hope this is helpful and solves your issue. |
This issue has been open for a while and was about react-native project setup quirks, so I'm closing it. |
Naming collision between
ios/build/Build/Products/Debug-iphonesimulator/myapp.app/nodejs-project/package.json
and
myapp/nodejs-assets/nodejs-project/package.json
Warning:
The text was updated successfully, but these errors were encountered: