fix(ui): render ANSI escape codes in log viewer#1187
Merged
Conversation
Added AnsiText component that parses ANSI escape sequences and renders them with proper Tailwind CSS styling. This makes logs with colors, bold, italic, and other formatting display correctly instead of showing raw escape characters. - Added anser library for ANSI parsing - Created AnsiText component with color and formatting support - Updated LogsList and LogDetail to use AnsiText - Added unit tests for AnsiText component - Added test fixture with ANSI escape codes Fixes #1185
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
BYK
pushed a commit
that referenced
this pull request
Dec 4, 2025
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or [setup this action to publish automatically](https://github.com/changesets/action#with-publishing). If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## @spotlightjs/spotlight@4.7.2 ### Patch Changes - Fix ANSI escape code rendering in log viewer. Logs containing ANSI escape sequences (colors, bold, italic, etc.) are now properly styled in the UI instead of showing raw escape characters. ([#1187](#1187)) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
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.
Summary
Fixes #1185
Logs containing ANSI escape sequences (colors, bold, italic, etc.) are now properly styled in the UI instead of showing raw escape characters.
Changes
anserlibrary for ANSI parsingAnsiTextcomponent that:LogsListandLogDetailto use the new componentAnsiTextcomponentBefore/After
Before: Logs showed raw escape sequences like
\u001b[32m✓\u001b[0mAfter: Logs display properly colored and formatted text
Testing
AnsiTextcomponent