Refactor Tailwind CSS server handling

This commit is contained in:
Akira Tempaku 2024-11-15 09:51:29 +09:00
commit 340dd47e0d
5 changed files with 16 additions and 13 deletions

View file

@ -10,16 +10,10 @@
#:update))
(in-package #:hp)
(defparameter *watch-process* nil)
(defun start ()
(when (env:dev-mode-p)
(setf *watch-process* (uiop:launch-program "make watch")))
(jg:start *app*))
(defun stop ()
(when (env:dev-mode-p)
(uiop:terminate-process *watch-process*))
(jg:stop *app*))
(defun update ()