|
@@ -7,10 +7,12 @@ class Tailwind(SimpleNamespace):
|
|
"""Tailwind constants."""
|
|
"""Tailwind constants."""
|
|
|
|
|
|
# The Tailwindcss version
|
|
# The Tailwindcss version
|
|
- VERSION = "tailwindcss@3.4.17"
|
|
|
|
|
|
+ VERSION = "tailwindcss@4.0.4"
|
|
# The Tailwind config.
|
|
# The Tailwind config.
|
|
CONFIG = "tailwind.config.js"
|
|
CONFIG = "tailwind.config.js"
|
|
# Default Tailwind content paths
|
|
# Default Tailwind content paths
|
|
CONTENT = ["./pages/**/*.{js,ts,jsx,tsx}", "./utils/**/*.{js,ts,jsx,tsx}"]
|
|
CONTENT = ["./pages/**/*.{js,ts,jsx,tsx}", "./utils/**/*.{js,ts,jsx,tsx}"]
|
|
# Relative tailwind style path to root stylesheet in Dirs.STYLES.
|
|
# Relative tailwind style path to root stylesheet in Dirs.STYLES.
|
|
ROOT_STYLE_PATH = "./tailwind.css"
|
|
ROOT_STYLE_PATH = "./tailwind.css"
|
|
|
|
+ # Builtin dependencies
|
|
|
|
+ DEPENDENCIES = ("@tailwindcss/postcss",)
|