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 DENO := deno
tests: clean fmt-check tests: clean fmt-check
$(DENO) test --coverage=cov_profile *.test.mjs $(DENO) test --coverage=cov_profile *.test.ts
tests-cov: tests tests-cov: tests
$(DENO) coverage cov_profile --lcov > cov_profile/cov.lcov $(DENO) coverage cov_profile --lcov > cov_profile/cov.lcov
fmt: fmt:
$(DENO) fmt *.mjs $(DENO) fmt *.ts
fmt-check: fmt-check:
$(DENO) fmt *.mjs --check $(DENO) fmt *.ts --check
clean: clean:
rm -rf cov_profile rm -rf cov_profile