Skip to content

Commit

Permalink
update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
negrel committed May 9, 2024
1 parent 52fa558 commit 8fa1364
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

.PHONY:
start:
deno task start
Expand All @@ -7,6 +6,18 @@ start:
lint:
deno task check

.PHONY: fmt
fmt:
deno fmt

.PHONY: fmt-check
fmt-check:
deno fmt --check

.PHONY: test
test: lint fmt
deno test

.PHONY: build
build:
deno task build
Expand Down

0 comments on commit 8fa1364

Please sign in to comment.