From 199207e5af401af2978c6715319c5c3c0264b955 Mon Sep 17 00:00:00 2001 From: Julien Oculi Date: Sat, 15 Jun 2024 17:26:39 +0200 Subject: [PATCH] fix: prefix exports with relative paths --- deno.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deno.json b/deno.json index b5fcabd..d1f8e5b 100644 --- a/deno.json +++ b/deno.json @@ -1,10 +1,10 @@ { "name": "@cohabit/cohamail", - "version": "0.1.0", + "version": "0.1.1", "exports": { ".": "./mod.ts", - "cli": "./cli.ts", - "types": "./types.ts" + "./cli": "./cli.ts", + "./types": "./types.ts" }, "tasks": { "compile": "deno compile --allow-read --allow-env --allow-net=0.0.0.0 --allow-sys=osRelease,networkInterfaces --allow-run=/usr/sbin/sendmail,whoami --output=bin/cohamail --target=x86_64-unknown-linux-gnu ./cli.ts",