From fc3b45103b4a23d14a11b5c368112c41906d86bf Mon Sep 17 00:00:00 2001 From: Zef Hemel Date: Sun, 15 Jan 2023 11:35:32 +0100 Subject: [PATCH] Remove check flag from regular builds for speed --- deno.jsonc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deno.jsonc b/deno.jsonc index 80f50c0d..eacb2997 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -4,8 +4,8 @@ "install": "deno install -f -A --unstable silverbullet.ts", "check": "find web common server plugs cmd plug-api plugos -name '*.ts*' | xargs deno check", "test": "deno test -A --unstable", - "build": "deno run -A --unstable --check build_plugs.ts && deno run -A --unstable --check build_web.ts", - "plugs": "deno run -A --unstable --check build_plugs.ts", + "build": "deno run -A --unstable build_plugs.ts && deno run -A --unstable build_web.ts", + "plugs": "deno run -A --unstable build_plugs.ts", "watch-web": "deno run -A --unstable --check build_web.ts --watch", "watch-server": "deno run -A --unstable --check --watch silverbullet.ts", // The only reason to run a shell script is that deno task doesn't support globs yet (e.g. *.plug.yaml)