From bc37756097e215f04b5bcc76aaddb9447a24c725 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Fri, 2 May 2025 13:09:11 +0400 Subject: [PATCH] Add exclude option to compile command --- deno.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deno.json b/deno.json index 2026df2..1d55a29 100644 --- a/deno.json +++ b/deno.json @@ -2,7 +2,7 @@ "tasks": { "dev": "deno run --allow-all --watch server.ts", "server": "deno run --allow-all server.ts", - "compile": "deno compile --allow-all --include ./assets/ --output ./build/substr_x86_64-unknown-linux-gnu server.ts", + "compile": "deno compile --allow-all --include ./assets/ --exclude ./tests/ --output ./build/substr_x86_64-unknown-linux-gnu server.ts", "test": "DENO_ENV=test deno test --allow-read --allow-env" }, "imports": {