From 4eeea5b230f8ce184bd5228cd1324486ed0ad7f1 Mon Sep 17 00:00:00 2001 From: CrescentLeaf Date: Sat, 30 Aug 2025 16:05:10 +0800 Subject: [PATCH] chore: run with --allow-net --allow-env --- deno.jsonc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deno.jsonc b/deno.jsonc index 339ccd0..bcfc8a7 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -1,7 +1,7 @@ { "tasks": { - "main": "deno run --allow-read --allow-write server/main.ts", - "test": "deno run --allow-read --allow-write server/main_test.ts" + "main": "deno run --allow-read --allow-write --allow-env --allow-net server/main.ts", + "test": "deno run --allow-read --allow-write --allow-env --allow-net server/main_test.ts" }, "imports": { "chalk": "npm:chalk@5.4.1",