Files
resend__react-email/turbo.json
T

74 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2023-05-20 16:16:36 +12:00
{
"$schema": "https://turbo.build/schema.json",
2025-04-24 11:13:25 -03:00
"globalDependencies": ["**/.env.*local", "pnpm-lock.yaml"],
2025-02-21 09:22:42 -03:00
"globalEnv": [
"SUPABASE_URL",
"SUPABASE_ANON_KEY",
"SUPABASE_TABLE_NAME",
"SPAM_ASSASSIN_HOST",
2026-04-01 13:33:15 -03:00
"SPAM_ASSASSIN_PORT",
"PLAYWRIGHT_BROWSERS_PATH"
2025-02-21 09:22:42 -03:00
],
"tasks": {
2023-05-20 16:16:36 +12:00
"build": {
"dependsOn": ["^build", "^postbuild"],
"outputs": ["dist/**"]
2023-05-20 16:16:36 +12:00
},
"postbuild": {
"dependsOn": ["build"],
"cache": false
},
"web#build": {
"dependsOn": ["^build", "^postbuild"],
"env": [
"REDIS_URL",
"RESEND_API_KEY",
"NEXT_PUBLIC_SUPABASE_URL",
"NEXT_PUBLIC_SUPABASE_ANON_KEY"
],
"outputs": [".next/**", "!.next/cache/**"]
2023-05-20 16:16:36 +12:00
},
"@react-email/ui#build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"playground#build": {
"dependsOn": ["^build", "^postbuild"],
"outputs": [".react-email/**", "!.react-email/.next/cache/**"]
},
"demo#build": {
2026-01-28 11:44:07 -03:00
"dependsOn": [
"^build",
"^postbuild",
"@react-email/ui#build",
2026-01-28 11:44:07 -03:00
"react-email#build"
],
"outputs": [".react-email/**", "!.react-email/.next/cache/**"]
},
"react-email#build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
2023-05-20 16:16:36 +12:00
"lint": {},
"typecheck": {
"dependsOn": ["^build"]
},
"//#format": {},
"//#format:check": {},
"test:e2e": {
"dependsOn": ["^build"]
},
"test": {
"dependsOn": ["^build"]
},
"test:watch": {
"cache": false
},
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
}
2023-05-20 16:16:36 +12:00
}
}