Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR bumps the Prettier version from ^3.6.2 to ^3.8.1 to take advantage of performance improvements and bug fixes, particularly a VS Code crash fix. The version bump results in automated formatting changes to TypeScript extends keyword usage across several files.
Changes:
- Updated Prettier dependency from
^3.6.2to^3.8.1in package.json and yarn.lock - Applied automated formatting changes to TypeScript interface declarations with
extendskeyword - Reformatted multi-line type extensions and function parameter type unions for better readability
Reviewed changes
Copilot reviewed 6 out of 9 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| package.json | Updated prettier dependency to ^3.8.1 |
| yarn.lock | Added prettier@^3.8.1 entry with version 3.8.1 |
| packages/replay-internal/src/types/replay.ts | Reformatted ReplayConfiguration interface extends clause with line breaks |
| packages/react/test/reactrouter-compat-utils/instrumentation.test.tsx | Reformatted destructuring assignment from dynamic import |
| packages/feedback/src/core/types.ts | Reformatted OptionalFeedbackConfiguration interface extends and Omit type parameters |
| packages/core/src/utils/flushIfServerless.ts | Adjusted indentation for union type in function parameter |
| packages/core/src/types-hoist/options.ts | Reformatted CoreOptions interface extends and Omit type parameters |
| packages/core/src/types-hoist/feedback/index.ts | Reformatted FeedbackInternalOptions interface extends to single line |
| packages/browser/src/integrations/spotlight.ts | Adjusted indentation in Boolean expression within isSpotlightInteraction function |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Lms24
approved these changes
Feb 5, 2026
Contributor
Codecov Results 📊Generated by Codecov Action |
Contributor
node-overhead report 🧳Note: This is a synthetic benchmark with a minimal express app and does not necessarily reflect the real-world performance impact in an application.
|
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.
This PR bumps prettier version from
3.6.2to3.8.1Notable changes:
extendskeyword.Main motivation is it makes us ready for oxfmt with little to no changes in our workflow.