From 3eabba34664416d0396e59982e7dd32b954d8bac Mon Sep 17 00:00:00 2001 From: Shibo Lyu Date: Thu, 26 Sep 2024 00:50:51 +0800 Subject: [PATCH] chore: exclude other files from jsr publish --- deno.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/deno.json b/deno.json index 751979a..ae506d3 100644 --- a/deno.json +++ b/deno.json @@ -13,5 +13,9 @@ }, "tasks": { "build:npm": "deno run ./scripts/build_npm.ts" + }, + "publish": { + "include": ["LICENSE", "README.md", "crypto", "identity"], + "exclude": ["**/*.test.ts"] } }