From 4b93e5fd6766bfbf006b12c1cd6448e7c276c67e Mon Sep 17 00:00:00 2001 From: CrescentLeaf Date: Thu, 25 Sep 2025 15:04:50 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20deno=20task=20server=20=E4=B8=8D?= =?UTF-8?q?=E5=86=8D=E8=87=AA=E5=8B=95=E7=B7=A8=E8=AD=AF=E5=89=8D=E7=AB=AF?= =?UTF-8?q?=20*=20=E8=AB=8B=E4=BD=BF=E7=94=A8=20debug=20=E6=88=96=20?= =?UTF-8?q?=E6=89=8B=E5=8B=95=20build?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deno.jsonc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deno.jsonc b/deno.jsonc index ea4347e..7afe6ef 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -1,6 +1,6 @@ { "tasks": { - "server": "deno task build && deno run --allow-read --allow-write --allow-env --allow-net --allow-sys --allow-run=deno ./server/main.ts", + "server": "deno run --allow-read --allow-write --allow-env --allow-net --allow-sys --allow-run=deno ./server/main.ts", "debug": "deno task build && deno run --watch --allow-read --allow-write --allow-env --allow-net --allow-sys --allow-run=deno ./server/main.ts", "build": "cd ./client && deno task build" },