Reputation: 441
I am trying to get sourcemaps to work on an expo 49 project.
the bugsnag docs say to add this to package.json
"scripts": {
...
"eas-build-on-success": "npx bugsnag-eas-build-on-success"
}
However whenever building via $ eas build -p ios
I get this error:
404 Not Found - GET https://registry.yarnpkg.com/bugsnag-eas-build-on-success - Not found
I've searched yarn and npm and this package (bugsnag-eas-build-on-success) doesn't seem to exist. Any help would be greatly appreciated!
Upvotes: 2
Views: 271
Reputation: 31
I just got this issue too, just remove the npx since the bugsnag-eas-build-on-success
is actually in the package @bugsnag/plugin-expo-eas-sourcemaps
instead of a standalone npm package
Upvotes: 1