Explorar el Código

remove postcss from running command

Khaleel Al-Adhami hace 3 meses
padre
commit
1e42ee0663
Se han modificado 2 ficheros con 0 adiciones y 3 borrados
  1. 0 2
      reflex/constants/style.py
  2. 0 1
      reflex/utils/prerequisites.py

+ 0 - 2
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",)

+ 0 - 1
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,