From 04029f87a3b9dd24e8792b852ead9097e18d23c7 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Thu, 8 May 2025 19:32:34 +0200 Subject: [PATCH] chore(tasks): remove commented-out start and watch scripts - Cleans up unused task definitions for better maintainability - Reduces clutter in the task configuration --- deno.jsonc | 2 -- 1 file changed, 2 deletions(-) diff --git a/deno.jsonc b/deno.jsonc index 6e55ce7..d809cd6 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -2,8 +2,6 @@ "name": "@0xmax42/http-kernel", "description": "A simple HTTP kernel for Deno", "tasks": { - // "start": "deno run --allow-net --allow-env --unstable-kv --allow-read --allow-write --env-file src/main.ts -- --verbose", - // "watch": "deno run --watch --allow-net --allow-env --unstable-kv --allow-read --allow-write --env-file src/main.ts -- --verbose", "test": "deno test --allow-net --allow-env --unstable-kv --allow-read --allow-write --coverage **/__tests__/*.test.ts", "test:watch": "deno test --watch --allow-net --allow-env --unstable-kv --allow-read --allow-write **/__tests__/*.test.ts" },