From c22b776752044e06551dcb7e0625fdf6d32610b0 Mon Sep 17 00:00:00 2001 From: Cotton Hou Date: Sun, 10 Mar 2024 03:57:24 +0800 Subject: [PATCH] publish include/exclude files --- deno.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/deno.json b/deno.json index 3d51e5e..b367d4d 100644 --- a/deno.json +++ b/deno.json @@ -2,6 +2,21 @@ "$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json", "name": "@key/gen-ssh-ed25519", "version": "0.1.0", + "publish": { + "include": [ + "deno.json", + "package.json", + "LICENSE.txt", + "README.md", + "./src" + ], + "exclude": [ + "node_modules/", + ".git/", + ".vscode/", + ".github/" + ] + }, "exports": { "./private": "./src/private.ts", "./uuid": "./src/uuid.ts",