We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e061e7 commit 6eae61fCopy full SHA for 6eae61f
Makefile
@@ -20,7 +20,11 @@ help: ## Show this help message
20
.PHONY: install
21
install: ## Install dependencies and git hooks
22
bun install
23
- prek install
+ @if command -v prek >/dev/null 2>&1; then \
24
+ prek install; \
25
+ else \
26
+ echo "prek not found — skipping git hook setup (optional, see README)"; \
27
+ fi
28
29
## Development
30
0 commit comments