react-native-push-notification
react-native-push-notification copied to clipboard
ERROR: ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead
index.js is mixing module syntax, it's using both CJS and ESM. According to this test case, mixing module syntax is not allowed in webpack. This line of code should be replaced with export default Notifications. A PR has been submitted incase you agree that this is a bug.