fix: ext in makefile

This commit is contained in:
Dmitriy Pleshevskiy 2021-08-20 01:35:45 +03:00
parent 094b9216da
commit 8b9fb8cea0

View file

@ -1,16 +1,16 @@
DENO := deno
tests: clean fmt-check
$(DENO) test --coverage=cov_profile *.test.mjs
$(DENO) test --coverage=cov_profile *.test.ts
tests-cov: tests
$(DENO) coverage cov_profile --lcov > cov_profile/cov.lcov
fmt:
$(DENO) fmt *.mjs
$(DENO) fmt *.ts
fmt-check:
$(DENO) fmt *.mjs --check
$(DENO) fmt *.ts --check
clean:
rm -rf cov_profile