-
Notifications
You must be signed in to change notification settings - Fork 126
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
fix: webpack chunks not deduping with sentry #886
fix: webpack chunks not deduping with sentry #886
Conversation
🦋 Changeset detectedLatest commit: 90a94ed The changes in this PR will be included in the next version bump. This PR includes changesets to release 2 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
🧪 Prereleases are available for testing 🧪 @cloudflare/next-on-pagesYou can install this latest build in your project with: npm install --save-dev https://prerelease-registry.devprod.cloudflare.dev/next-on-pages/runs/11134506626/npm-package-next-on-pages-886 @cloudflare/eslint-plugin-next-on-pagesYou can install this latest build in your project with: npm install --save-dev https://prerelease-registry.devprod.cloudflare.dev/next-on-pages/runs/11134506626/npm-package-eslint-plugin-next-on-pages-886 |
9170650
to
eaa2ef0
Compare
eaa2ef0
to
8181cdd
Compare
8181cdd
to
0a01c75
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The change looks good to me, thanks a lot @james-elicx 🫶
Ideally I think the code should be more robust and deal with all the SequenceExpression
's expressions
, but that doesn't need to be a blocker for this PR
When using sentry, you get a SequenceExpression with the CallExpression inside it. We need to find that CallExpression so we can use it for deduping.
fixes #860