From 1b221db420168c001fff98755d3046968bc4575a Mon Sep 17 00:00:00 2001 From: Bruno Bernardino Date: Mon, 29 Dec 2025 08:24:12 +0000 Subject: [PATCH] Reorder tasks --- deno.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deno.json b/deno.json index 685b655..2932c0a 100644 --- a/deno.json +++ b/deno.json @@ -6,12 +6,12 @@ "cli": "echo \"import '\\$fresh/src/dev/cli.ts'\" | deno run --unstable -A -", "manifest": "deno task cli manifest $(pwd)", - "build": "deno task execute-with-permissions ./dev.ts build", "start": "deno task execute-with-permissions --watch=static/,routes/,lib/,components/,islands/ ./dev.ts", + "build": "deno task execute-with-permissions ./dev.ts build", + "preview": "deno task execute-with-permissions ./main.ts", "test": "deno test --allow-all --check", - - "migrate-db": "deno task execute-with-permissions ./migrate-db.ts", - "preview": "deno task execute-with-permissions ./main.ts" + + "migrate-db": "deno task execute-with-permissions ./migrate-db.ts" }, "fmt": { "useTabs": false,