intro-to-the-lightning-netw.../justfile

24 lines
227 B
Makefile
Raw Permalink Normal View History

2024-05-10 09:38:48 +01:00
CC := "bun"
ARGS := ""
default: fmt
{{CC}} run build
dep:
{{CC}} install; netlify init
2024-05-10 09:38:48 +01:00
dev:
{{CC}} --bun run dev
2024-05-10 09:38:48 +01:00
fmt:
{{CC}} run format
check:
{{CC}} run check
clean:
{{CC}} clean
deploy:
netlify deploy --prod