From a6a98fe3054ef48377f987ad4caf82cfc6573b9d Mon Sep 17 00:00:00 2001 From: Bruno Bernardino Date: Mon, 29 Dec 2025 08:23:25 +0000 Subject: [PATCH] Keep task names consistent (no breaking changes) --- deno.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deno.json b/deno.json index 90ff602..685b655 100644 --- a/deno.json +++ b/deno.json @@ -7,11 +7,11 @@ "manifest": "deno task cli manifest $(pwd)", "build": "deno task execute-with-permissions ./dev.ts build", - "preview": "deno task execute-with-permissions --watch=static/,routes/,lib/,components/,islands/ ./dev.ts", - "test": "deno test -A --check", + "start": "deno task execute-with-permissions --watch=static/,routes/,lib/,components/,islands/ ./dev.ts", + "test": "deno test --allow-all --check", "migrate-db": "deno task execute-with-permissions ./migrate-db.ts", - "start": "deno task execute-with-permissions ./main.ts" + "preview": "deno task execute-with-permissions ./main.ts" }, "fmt": { "useTabs": false,