Open
Conversation
- next ^14 → ^16, tailwindcss ^3 → ^4 - Remove autoprefixer and postcss devDependencies - Delete tailwind.config.js and postcss.config.js - Migrate globals.css: @tailwind directives → @import "tailwindcss" + @theme block - Convert next.config.js → next.config.mjs (ESM required by Next 16) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
- Import tokens.css in globals.css and wire @theme vars to design-system CSS custom properties - Replace all :root hex definitions with var(--pe-color-*) references - Swap hardcoded #fff, #EF4444, #059669, #dc2626, #d97706, #e2e8f0, #e8edf2 in CSS with semantic token vars - Use colors.white, colors.text.warning, chartColors.positive/negative in JSX chart components - Two hex values retained in IntraDecileChart (red-800, green-700) with comments — no matching token exists Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.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
autoprefixerandpostcssdevDependencies (bundled in Tailwind 4)tailwind.config.jsandpostcss.config.js(replaced by@themeblock in CSS)globals.cssto use@import "tailwindcss"+@theme { }for design tokensnext.config.jstonext.config.mjs(ESM required by Next 16)Test plan
bun run buildsucceeds with zero errors🤖 Generated with Claude Code