deno_hello/Makefile
2021-09-16 16:28:46 +02:00

12 lines
No EOL
216 B
Makefile

cli:
deno run cli.ts
run:
deno run --watch --allow-net src/main.ts
lint:
deno lint --unstable
test: tests
tests:
deno test --coverage=.coverage --unstable
deno coverage .coverage
.PHONY: cli run lint test tests