From b009b5763d1824fc94fdc1e3d919fe2597158f84 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Thu, 8 May 2025 19:01:03 +0200 Subject: [PATCH] feat(config): add project metadata and test watch task - Introduce name and description fields for project metadata - Add a test:watch task for running tests in watch mode - Improve configuration clarity by adjusting formatting --- deno.jsonc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/deno.jsonc b/deno.jsonc index 1af8a30..6e55ce7 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -1,8 +1,11 @@ { + "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": "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" }, "compilerOptions": { "lib": [ @@ -24,6 +27,6 @@ "src/", "main.ts" ] - }, + } //"importMap": "./import_map.json" } \ No newline at end of file