From 6720eace7aa507401ce6bed6ebd6c6c5a626bd1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Wed, 15 Sep 2021 21:19:22 +0200 Subject: [PATCH] add Makefile --- cli/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 cli/Makefile diff --git a/cli/Makefile b/cli/Makefile new file mode 100644 index 0000000..9ceb276 --- /dev/null +++ b/cli/Makefile @@ -0,0 +1,7 @@ +all: lint compile + +lint: + deno lint + +compile: + deno compile --import-map ./import_map.json --allow-read --allow-write -o kollagen main.ts \ No newline at end of file