deno_hello/Makefile
2021-08-19 01:52:41 +02:00

11 lines
No EOL
215 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