From 55fd2d769818443da315525fb762f113154cb32d Mon Sep 17 00:00:00 2001 From: Jared Henderson Date: Fri, 24 Jan 2025 10:44:14 -0500 Subject: [PATCH] prevent npm updates to tailwindcss v4.x.x, not compatible yet --- changelog.md | 5 +++++ package.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 9b0ea5b..b3dcfbf 100644 --- a/changelog.md +++ b/changelog.md @@ -6,6 +6,11 @@ on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project ad [comment]: # 'Section Titles: Added/Fixed/Changed/Removed' +## [4.6.1] - 2025-01-24 + +- prevent auto-upgrades to `tailwindcss@4.x.x` until we explore/fix compitibility + [(#331)](https://github.com/jaredh159/tailwind-react-native-classnames/issues/331) + ## [4.6.0] - 2024-11-07 - added support for fontWeight sub-customization in fontSize theming (thanks @Gyeop) diff --git a/package.json b/package.json index c3d4a44..5643058 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ "npub:precheck": "npm run lint && npm run format:check && npm run ts:check && npm run test" }, "dependencies": { - "tailwindcss": ">=2.0.0" + "tailwindcss": ">=2.0.0 <4.0.0" }, "peerDependencies": { "react-native": ">=0.62.2"