Conversation
commit: |
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 4 potential issues.
Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.
|
The latest updates on your projects. Learn more about Vercel for GitHub. 1 Skipped Deployment
|
Comment on lines
+269
to
+273
| const headMatch = newContent.match(/<Head>([\s\S]*?)<\/Head>/); | ||
| if (headMatch) { | ||
| newContent = newContent.replace('<Head>', `<Head>${injection}`); | ||
| } else { | ||
| const selfClosingHeadMatch = newContent.match(/<Head\s*\/>/); |
There was a problem hiding this comment.
Suggested change
| const headMatch = newContent.match(/<Head>([\s\S]*?)<\/Head>/); | |
| if (headMatch) { | |
| newContent = newContent.replace('<Head>', `<Head>${injection}`); | |
| } else { | |
| const selfClosingHeadMatch = newContent.match(/<Head\s*\/>/); | |
| const headMatch = newContent.match(/<Head[^>]*>([\s\S]*?)<\/Head>/); | |
| if (headMatch) { | |
| const headOpeningTag = headMatch[0].match(/<Head[^>]*>/)[0]; | |
| newContent = newContent.replace(headOpeningTag, `${headOpeningTag}${injection}`); | |
| } else { | |
| const selfClosingHeadMatch = newContent.match(/<Head[^>]*\s*\/>/); |
The transformNextPagesRouter function fails to inject React Scan script when the Next.js _document file uses Head component with attributes (e.g., or or their self-closing variants)
| message: 'Could not find <head> tag in index.html', | ||
| }; | ||
| } | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Note
Medium Risk
Changes packaging surface area (removes
monitoringexports) and rewrites the CLI behavior, which may break existing users and relies on file-injection heuristics for setup.Overview
Removes the entire
core/monitorproduction monitoring feature and all related package exports/types, plus associated internal store fields and options callbacks.Replaces the Playwright-based
npx react-scan <url>workflow with a new interactivenpx react-scan initcommand that auto-detects Next.js/Vite/Webpack projects, previews a diff, optionally installsreact-scan, and injects the script/import into the appropriate entry file.Adds Playwright E2E coverage via a new
kitchen-sinke2e-fixtureande2e/*.spec.ts, switches linting from Biome tooxlint, and cleans up dead/duplicated utilities and outline/animation code while simplifying the README to the new init flow.Written by Cursor Bugbot for commit 3135bc3. This will update automatically on new commits. Configure here.