mirror of
https://github.com/feeddeck/feeddeck.git
synced 2026-03-09 07:02:01 -05:00
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:
15
.github/dependabot.yml
vendored
15
.github/dependabot.yml
vendored
@@ -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:
|
||||
- "*"
|
||||
|
||||
2
supabase/email-templates/.gitignore
vendored
2
supabase/email-templates/.gitignore
vendored
@@ -1,4 +1,2 @@
|
||||
# React Email
|
||||
.react-email
|
||||
node_modules
|
||||
out
|
||||
|
||||
11319
supabase/email-templates/package-lock.json
generated
11319
supabase/email-templates/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
12
supabase/email-templates/tsconfig.json
Normal file
12
supabase/email-templates/tsconfig.json
Normal 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"]
|
||||
}
|
||||
Reference in New Issue
Block a user