fix: update deno permission for gfm module

This commit is contained in:
Julien Oculi 2024-06-04 18:34:58 +02:00
parent 027db0f7d0
commit df6a62b42f

View file

@ -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"