From 486a3da213f4e1bc2f99a9388fc1e62644d46aa0 Mon Sep 17 00:00:00 2001 From: Julien Oculi <xdrz.jot.sr@gmail.com> Date: Mon, 15 Jul 2024 22:37:38 +0200 Subject: [PATCH] fix: jsr import map don't update deno types directive --- deno.json | 2 +- src/transporter.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deno.json b/deno.json index 57a2fe7..2983da9 100644 --- a/deno.json +++ b/deno.json @@ -1,6 +1,6 @@ { "name": "@cohabit/mailer", - "version": "0.3.2", + "version": "0.3.3", "exports": { ".": "./mod.ts", "./cli": "./cli.ts", diff --git a/src/transporter.ts b/src/transporter.ts index 7a105fa..dc3b56b 100644 --- a/src/transporter.ts +++ b/src/transporter.ts @@ -1,4 +1,4 @@ -// @deno-types="@types/nodemailer" +// @deno-types="npm:@types/nodemailer@^6.4.15" import nodemailer from 'nodemailer' import dkim from '../config/dkim.json' with { type: 'json' }