Update React Email (#264)

Update React Email to the latest version and add Dependabot
configuration to keep it up-to-date.
This commit is contained in:
Rico Berger
2025-05-17 16:42:10 +02:00
committed by GitHub
parent 2d838240fd
commit 6a1a21eec3
5 changed files with 1524 additions and 9840 deletions

View File

@@ -60,3 +60,18 @@ updates:
npm:
patterns:
- "*"
- package-ecosystem: "npm"
directory: "/supabase/email-templates"
schedule:
interval: "monthly"
reviewers:
- "ricoberger"
assignees:
- "ricoberger"
labels:
- "changelog: changed"
groups:
npm:
patterns:
- "*"

View File

@@ -1,4 +1,2 @@
# React Email
.react-email
node_modules
out

File diff suppressed because it is too large Load Diff

View File

@@ -1,16 +1,20 @@
{
"name": "emails",
"version": "0.0.18",
"version": "1.1.0",
"private": true,
"workspaces": [
".react-email"
],
"scripts": {
"build": "email build",
"dev": "email dev",
"export": "email export"
},
"dependencies": {
"@react-email/components": "^0.0.33",
"react-email": "^3.0.7"
"@react-email/components": "0.0.41",
"react-dom": "^19.0.0",
"react": "^19.0.0"
},
"devDependencies": {
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"react-email": "4.0.14"
}
}

View File

@@ -0,0 +1,12 @@
{
"compilerOptions": {
"composite": false,
"jsx": "react-jsx",
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"strictNullChecks": true
},
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["node_modules", ".react-email"]
}