aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorLia Lenckowski <lialenck@protonmail.com>2023-08-17 19:26:17 +0200
committerLia Lenckowski <lialenck@protonmail.com>2023-08-17 19:26:17 +0200
commitb490f802a83382ad1a255cfef47724a0e7a9789b (patch)
treeb1b7f9dad6bb0884094deb9ecd813d2c9ee76d7f /makefile
parent4fd80f9e24f561bd22f907621dd8901e653f1d25 (diff)
downloadfastbangs-b490f802a83382ad1a255cfef47724a0e7a9789b.tar
fastbangs-b490f802a83382ad1a255cfef47724a0e7a9789b.tar.bz2
fastbangs-b490f802a83382ad1a255cfef47724a0e7a9789b.tar.zst
error handling for login; partial adminpanel infrastructure
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index 510c397..8aea40d 100644
--- a/makefile
+++ b/makefile
@@ -2,11 +2,11 @@ ESFLAGS = --target=esnext --format=esm
deploy-dir: deploy deploy/bundle.js deploy/style.css deploy/index.html deploy/fastbangs
-.PHONY: watch clean deploy-dir
+.PHONY: watch-script watch-style clean deploy-dir
watch-script: frontend/fuzzysort.js
esbuild frontend/main.ts --bundle --outfile=deploy/bundle.js $(ESFLAGS) --watch
watch-style:
- while true; do inotifywait -e modify -e move frontend/style.sass; make deploy/style.css; done
+ while true; do make deploy/style.css; inotifywait -e modify -e move frontend/style.sass; done
clean:
stack clean --full