From f57df5df0f755b52631d0480bfd454306a4bb2a7 Mon Sep 17 00:00:00 2001 From: Isaac Corbrey Date: Wed, 10 Sep 2025 21:24:40 +0000 Subject: [PATCH] flake: Use `--watch=always` for Tailwind watcher Change-Id: svwnlttypsnnvtzvyzkzlyqrzuqsslnn This forces the watcher to stay alive when running non-interactively (e.g. when run from within Tilt). Signed-off-by: Isaac Corbrey --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index efc235d..0bbd02e 100644 --- a/flake.nix +++ b/flake.nix @@ -187,7 +187,7 @@ tailwind-watcher = pkgs.writeShellScriptBin "run" '' - ${pkgs.tailwindcss}/bin/tailwindcss -w -i input.css -o ./appview/pages/static/tw.css + ${pkgs.tailwindcss}/bin/tailwindcss --watch=always -i input.css -o ./appview/pages/static/tw.css ''; in { fmt = { -- 2.43.0