From 51543b778812fb5f64737cf27424c62ea0079a09 Mon Sep 17 00:00:00 2001 From: Charlie Batten Date: Tue, 20 Aug 2024 10:45:07 +0100 Subject: [PATCH] feat: Add insecure build option for ignoring HTTPS certs --- deno.json | 1 + 1 file changed, 1 insertion(+) diff --git a/deno.json b/deno.json index 06ce105..07cae2f 100644 --- a/deno.json +++ b/deno.json @@ -1,6 +1,7 @@ { "tasks": { "build": "deno run --allow-run --allow-net --allow-read --allow-write --allow-env --no-check scripts/build.js", + "build:insecure": "deno run --allow-run --allow-net --allow-read --allow-write --allow-env --no-check --unsafely-ignore-certificate-errors scripts/build.js", "build:watch": "deno task build --watch", "build:fast": "FAST=true deno task --quiet build", "build:debug": "DEBUG=true deno task build",