From 34764ad6b2c501a81a65fda992fffc1a44ae129f Mon Sep 17 00:00:00 2001 From: Julien Oculi Date: Mon, 15 Jul 2024 22:34:59 +0200 Subject: [PATCH] fix: jsr import map don't update deno types directive --- deno.json | 2 +- src/template.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deno.json b/deno.json index 94bfa9a..57a2fe7 100644 --- a/deno.json +++ b/deno.json @@ -1,6 +1,6 @@ { "name": "@cohabit/mailer", - "version": "0.3.1", + "version": "0.3.2", "exports": { ".": "./mod.ts", "./cli": "./cli.ts", diff --git a/src/template.tsx b/src/template.tsx index 88b998d..36e0a6e 100644 --- a/src/template.tsx +++ b/src/template.tsx @@ -1,6 +1,6 @@ import React from 'preact/compat' //for jsx-email import { render } from 'jsx-email' -// @deno-types="turndown" +// @deno-types="npm:turndown@^7.1.3" import Turndown from 'turndown' import type { JSX } from 'preact'