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
fix(nextjs): Use local copies for all sentry packages when testing on vercel (getsentry#3812)
Previously, when testing a project on vercel against a particular branch of the SDK repo, only the `@sentry/nextjs` package was reflecting the branches changes (by dint of the fact that it was listed as a file dependency pointing to the built SDK). All other `@sentry/*` packages were still getting downloaded from `npm`.
This fixes the install script so that it will force all interdependencies between `@sentry/*` packages to be specified by absolute file paths. That way, only the branch versions of all packages will be used.
There are also some small logging improvements and some generalized cleanup.
Copy file name to clipboardExpand all lines: packages/nextjs/vercel/make-project-use-current-branch.sh
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -58,5 +58,5 @@ cd $NEXTJS_SDK_DIR
58
58
echo""
59
59
echo"SUCCESS!"
60
60
echo"Your project will now use this branch of the SDK repo when deployed to Vercel. If you haven't done so already, go to your project settings in Vercel and set a custom install command:"
0 commit comments