carstenlebek / svelte-email

Write and send emails with Svelte ✉️🚀

Home Page:https://svelte-email.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

render and styleToString exports need file types

doolijb opened this issue · comments

Playwright test fails to import svelte-email.

Error: Cannot find module '/srv/www/app/node_modules/svelte-email/render' imported from /srv/www/app/node_modules/svelte-email/index.js

Solution:

import { render } from './render';

import { render } from './render'; // update to './render.d.ts'
import { styleToString } from './utils'; // update to './utils.d.ts'