-
Notifications
You must be signed in to change notification settings - Fork 50
chore(deps-dev): bump tailwindcss from 3.4.19 to 4.1.18 #216
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -93,7 +93,7 @@ | |||||
| "postcss": "^8.5.6", | ||||||
| "prettier": "3.8.1", | ||||||
| "prettier-plugin-tailwindcss": "^0.7.2", | ||||||
| "tailwindcss": "^3.4.19", | ||||||
| "tailwindcss": "^4.1.18", | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. syntax: The lockfile (
Suggested change
After making this change, run Prompt To Fix With AIThis is a comment left during a code review.
Path: package.json
Line: 96:96
Comment:
**syntax:** The lockfile (`bun.lockb`) is missing from this PR. The CI workflow at `.github/workflows/pr-checks.yml:27,49,101` uses `bun install --frozen-lockfile` which will fail without an updated lockfile.
```suggestion
"tailwindcss": "^4.1.18",
```
After making this change, run `bun install` to update the lockfile and include it in the PR.
How can I resolve this? If you propose a fix, please make it concise. |
||||||
| "tailwindcss-animate": "^1.0.7", | ||||||
| "typescript": "^5.9.3" | ||||||
| }, | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
logic: Tailwind v4 is a complete rewrite with breaking changes. The current configuration at
tailwind.config.ts:1-101uses v3 syntax which is incompatible with v4. v4 requires migrating to CSS-based configuration using@import "tailwindcss"and@themedirectives instead of the JavaScript config file. The@tailwindcss/typographyplugin also needs updating for v4 compatibility.Key breaking changes:
@tailwindcss/typographyplugin at v0.5.16 may not be compatible with v4tailwindcss-animateplugin needs v4 compatibility verificationCheck the official v4 migration guide before merging.
Prompt To Fix With AI