diff options
| author | Paul Oliver <contact@pauloliver.dev> | 2026-02-10 03:13:20 +0000 |
|---|---|---|
| committer | Paul Oliver <contact@pauloliver.dev> | 2026-02-10 03:13:20 +0000 |
| commit | 5a3a6a533380a27f2221b2c81553286b5039ea7e (patch) | |
| tree | 31679fe0f6f168e993639aa83ea922a65016065b | |
| parent | 2cd272dd1cf3912b70ea2cc9f1b7b428fd479e81 (diff) | |
Make client build a separate makefile target
| -rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,9 +1,11 @@ client_dir = hsm-web/Client build: - cd $(client_dir) && npm run build stack build +client: + cd $(client_dir) && npm run build + clean: cd $(client_dir) && rm -rf dist stack clean --full |
