From 04d9088e64a0f075e5361987b664e7af1519a9d9 Mon Sep 17 00:00:00 2001 From: Yuzu Date: Sun, 3 Jul 2022 16:19:09 -0500 Subject: [PATCH] chore: add script runner --- deno.json | 3 +++ scripts.ts | 6 ++++++ 2 files changed, 9 insertions(+) create mode 100644 scripts.ts diff --git a/deno.json b/deno.json index d010978..25bec05 100644 --- a/deno.json +++ b/deno.json @@ -1,5 +1,8 @@ { "fmt": { + "files": { + "exclude": "vendor" + }, "options": { "indentWidth": 4, "lineWidth": 120 diff --git a/scripts.ts b/scripts.ts new file mode 100644 index 0000000..eed003e --- /dev/null +++ b/scripts.ts @@ -0,0 +1,6 @@ +export default { + scripts: { + fmt: "deno fmt", + check: "deno check mod.ts", + }, +};