
* upgrade to latest ruff * try to fix dep review * try to fix dep review (2) * upgrade black * upgrade black (2) * update allowed dependencies * update allowed dependencies (2) * update allowed dependencies (3) * wait between interim and final in yield test * remove previous commit, increase delay between yield * forgot to save on the time.sleep(1) removal * fix integration (maybe?) * fix pyi? * what even is going on * what is realityi? * test another fix for app harness * try to wait even longer? * force uvloop to be optional * downpin fastapi < 0.111, remove changes to test
17 lines
474 B
Python
17 lines
474 B
Python
"""Style constants."""
|
|
|
|
from types import SimpleNamespace
|
|
|
|
|
|
class Tailwind(SimpleNamespace):
|
|
"""Tailwind constants."""
|
|
|
|
# The Tailwindcss version
|
|
VERSION = "tailwindcss@3.3.2"
|
|
# The Tailwind config.
|
|
CONFIG = "tailwind.config.js"
|
|
# Default Tailwind content paths
|
|
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"
|