Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/designer-modes/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.19",
"tailwindcss": "^4.1.18",
Copy link

Copilot AI Jan 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version upgrade from v3 to v4 requires migration of Tailwind configuration and CSS imports. Tailwind v4 uses a CSS-first configuration approach with @import "tailwindcss" instead of the traditional tailwind.config.js file. Verify that this example has been updated with the appropriate configuration changes, CSS import statements, and any necessary PostCSS plugin adjustments for v4 compatibility.

Copilot uses AI. Check for mistakes.
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.3.1"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "^7.12.0",
"tailwindcss": "^3.0.0",
"tailwindcss": "^4.1.18",
"tslib": "^2.6.0",
"turbo": "^2.6.3",
"typescript": "^5.9.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.5",
"tailwindcss": "^4.1.18",
Copy link

Copilot AI Jan 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tailwind CSS v4 introduces breaking changes including a complete configuration system overhaul (CSS-first config vs JS config), removal of certain utilities, and changes to the build architecture. This major version upgrade may break existing Tailwind usage throughout the codebase. Ensure all Tailwind configuration files, custom utilities, and component styles have been migrated according to the v4 migration guide, and verify that the existing CSS architecture remains compatible with the new CSS-native configuration approach required by v4.

Suggested change
"tailwindcss": "^4.1.18",
"tailwindcss": "^3.4.17",

Copilot uses AI. Check for mistakes.
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4"
Expand Down
2 changes: 1 addition & 1 deletion packages/runner/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.1",
"tailwindcss": "^4.1.18",
"typescript": "^5.2.2",
"vite": "^5.2.0"
}
Expand Down
Loading
Loading