From c8bbf60527d225bfec4ac17ec7d2567e83bdc59f Mon Sep 17 00:00:00 2001 From: Alex Oliveira Date: Sat, 30 Sep 2023 09:14:43 +0100 Subject: [PATCH] fix: task run --- deno.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deno.json b/deno.json index 327d1ec1..2212a01b 100644 --- a/deno.json +++ b/deno.json @@ -1,7 +1,7 @@ { "tasks": { "start": "deno run -A debug.ts", - "debug": "deno --inspect-brk -A debug.ts", + "debug": "deno run --inspect-brk -A debug.ts", "format": "deno fmt", "lint": "deno lint", "test": "ENV_TYPE=test deno test --allow-env"