diff options
author | Lia Lenckowski <lialenck@protonmail.com> | 2023-08-17 19:26:17 +0200 |
---|---|---|
committer | Lia Lenckowski <lialenck@protonmail.com> | 2023-08-17 19:26:17 +0200 |
commit | b490f802a83382ad1a255cfef47724a0e7a9789b (patch) | |
tree | b1b7f9dad6bb0884094deb9ecd813d2c9ee76d7f /makefile | |
parent | 4fd80f9e24f561bd22f907621dd8901e653f1d25 (diff) | |
download | fastbangs-b490f802a83382ad1a255cfef47724a0e7a9789b.tar fastbangs-b490f802a83382ad1a255cfef47724a0e7a9789b.tar.bz2 fastbangs-b490f802a83382ad1a255cfef47724a0e7a9789b.tar.zst |
error handling for login; partial adminpanel infrastructure
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |