From 1e42ee06639d4bfbddf2b21c9f602a87bb44c9c8 Mon Sep 17 00:00:00 2001 From: Khaleel Al-Adhami Date: Thu, 6 Feb 2025 13:46:35 -0800 Subject: [PATCH] remove postcss from running command --- reflex/constants/style.py | 2 -- reflex/utils/prerequisites.py | 1 - 2 files changed, 3 deletions(-) diff --git a/reflex/constants/style.py b/reflex/constants/style.py index 88e37f3dc..129f40c9d 100644 --- a/reflex/constants/style.py +++ b/reflex/constants/style.py @@ -14,5 +14,3 @@ class Tailwind(SimpleNamespace): CONTENT = ["./pages/**/*.{js,ts,jsx,tsx}", "./utils/**/*.{js,ts,jsx,tsx}"] # Relative tailwind style path to root stylesheet in Dirs.STYLES. ROOT_STYLE_PATH = "./tailwind.css" - # Builtin dependencies - DEPENDENCIES = ("@tailwindcss/postcss",) diff --git a/reflex/utils/prerequisites.py b/reflex/utils/prerequisites.py index d9cef206e..6c6d34923 100644 --- a/reflex/utils/prerequisites.py +++ b/reflex/utils/prerequisites.py @@ -1204,7 +1204,6 @@ def install_frontend_packages(packages: set[str], config: Config): "add", "-d", constants.Tailwind.VERSION, - *constants.Tailwind.DEPENDENCIES, *((config.tailwind or {}).get("plugins", [])), ], fallback=fallback_command,