You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@jsdario it's a good thing for this library that 2.2.0 broke your code, but to prevent this kind of "automatic" update from breaking ur project in the future, set your semver in package.json to allow patches but not minor versions to sneak through:
package.json
"some-library": "~x.x.x" <-- allows patch upgrades
"some-library": "^x.x.x" <-- allows minor version upgrades (dangerous)
How? Rerun
npm install
and apparently my code jumped to the latest version.Maybe this commit 822b1e0 is passed through the native-js bridge with extra params, crashing on Android.
The text was updated successfully, but these errors were encountered: