mirror of
https://github.com/rjNemo/deno_hello
synced 2026-06-06 01:56:40 +00:00
11 lines
No EOL
215 B
Makefile
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 |