Update ags-watch script to include additional file types for monitoring

This commit is contained in:
Chris Toph 2025-05-10 19:28:08 -04:00
parent 8116060e57
commit 30ae94c523

View file

@ -53,7 +53,7 @@
ags-watch = pkgs.writeScriptBin "ags-watch" '' ags-watch = pkgs.writeScriptBin "ags-watch" ''
#!${pkgs.fish}/bin/fish #!${pkgs.fish}/bin/fish
ls **.tsx | ${pkgs.lib.getExe pkgs.entr} -r ags run -d ./ --gtk4 ls **.{tsx,ts,scss,css} | ${pkgs.lib.getExe pkgs.entr} -r ags run -d ./ --gtk4
''; '';
}; };