From df6a62b42f2477bc4cdb2a7544ce5dd3e40fe505 Mon Sep 17 00:00:00 2001 From: Julien Oculi Date: Tue, 4 Jun 2024 18:34:58 +0200 Subject: [PATCH] fix: update deno permission for gfm module --- deno.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deno.json b/deno.json index b09be30..48b5949 100644 --- a/deno.json +++ b/deno.json @@ -1,7 +1,7 @@ { "tasks": { - "serve": "deno run --allow-net=\"git.cohabit.fr,localhost:$PORT,127.0.0.1:$PORT,0.0.0.0:$PORT\" --allow-env=PORT,COHABIT_GIT_URL,PORTFOLIO_BASE_URL ./server.ts", - "test": "deno test --ignore=server.ts --allow-env=PORT,COHABIT_GIT_URL,PORTFOLIO_BASE_URL --doc", + "serve": "deno run --allow-net=\"git.cohabit.fr,localhost:$PORT,127.0.0.1:$PORT,0.0.0.0:$PORT\" --allow-env=PORT,COHABIT_GIT_URL,PORTFOLIO_BASE_URL,NO_COLOR,FORCE_COLOR,TERM --allow-read=. ./server.ts", + "test": "deno test --ignore=server.ts --allow-env=PORT,COHABIT_GIT_URL,PORTFOLIO_BASE_URL,NO_COLOR,FORCE_COLOR,TERM --allow-read=. --doc", "lint": "deno lint --ignore=docs", "doc": "deno doc --html --name='Portfolio Sever' ./src/*.ts", "check": "deno task lint && deno task test && deno task doc"