From b3158292bcc90defa09e95d1181b0414997184f0 Mon Sep 17 00:00:00 2001 From: Hong Minhee Date: Thu, 2 May 2024 09:37:45 +0900 Subject: [PATCH] Adjust exclude/include options --- .gitignore | 2 -- deno.json | 10 +++++++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 61683a29..8e3e6b76 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,3 @@ -.cov/ -.cov.lcov .dnt-import-map.json .DS_Store .test-report.xml diff --git a/deno.json b/deno.json index 1230ff85..f86191d8 100644 --- a/deno.json +++ b/deno.json @@ -56,12 +56,20 @@ "vocab/vocab.ts" ], "exclude": [ + "**/*.test.ts", ".git/", + ".github/", + ".vscode/", + ".zed/", "apidoc/", "cli/", "docs/", "examples/", - "npm/" + "logo.svg", + "npm/", + "vocab/*.yaml", + "testing/", + "!vocab/vocab.ts" ], "tasks": { "cache": "deno task codegen && deno cache mod.ts",