fix: ext in makefile
This commit is contained in:
parent
094b9216da
commit
8b9fb8cea0
1 changed files with 3 additions and 3 deletions
6
makefile
6
makefile
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue