From a4ba36f445c5a88a5826a335fa498af9bf696ed0 Mon Sep 17 00:00:00 2001 From: mineejo Date: Thu, 14 Dec 2023 16:15:16 +0300 Subject: [PATCH] chore: normalize config file for the current project --- deno.jsonc | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/deno.jsonc b/deno.jsonc index 24ca9c9..562085e 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -1,9 +1,18 @@ { "tasks": { - "dev": "deno run --watch main.ts", - "fmt": "deno fmt", - "lint": "deno lint", - "test": "deno test -A", - "generate": "cd _generator && deno run -A _generator.ts && deno task fmt" - } + // cd .npm; npm publish --access public + "build": "deno run --allow-read --allow-write --allow-net --allow-env --allow-run _build_npm.ts", + "generate": "cd _generator && deno run -A _generator.ts && deno fmt" + }, + "fmt": { + "include": [ + "./" + ] + }, + "exclude": [ + "./.github", + "./.idea", + "./.git", + "./.npm" + ] }