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
|
|
|
],
|
2024-08-30 12:02:53 -03:00
|
|
|
"tasks": {
|
2023-05-20 16:16:36 +12:00
|
|
|
"build": {
|
2025-05-07 09:31:05 -03:00
|
|
|
"dependsOn": ["^build", "^postbuild"],
|
2024-05-17 17:04:56 -03:00
|
|
|
"outputs": ["dist/**"]
|
2023-05-20 16:16:36 +12:00
|
|
|
},
|
2025-05-07 09:31:05 -03:00
|
|
|
"postbuild": {
|
|
|
|
|
"dependsOn": ["build"],
|
|
|
|
|
"cache": false
|
|
|
|
|
},
|
2023-10-01 22:13:36 -03:00
|
|
|
"web#build": {
|
2025-05-07 09:31:05 -03:00
|
|
|
"dependsOn": ["^build", "^postbuild"],
|
2023-10-01 22:13:36 -03:00
|
|
|
"env": [
|
2026-05-13 14:33:11 -03:00
|
|
|
"REDIS_URL",
|
2023-10-01 22:13:36 -03:00
|
|
|
"RESEND_API_KEY",
|
|
|
|
|
"NEXT_PUBLIC_SUPABASE_URL",
|
|
|
|
|
"NEXT_PUBLIC_SUPABASE_ANON_KEY"
|
|
|
|
|
],
|
|
|
|
|
"outputs": [".next/**", "!.next/cache/**"]
|
2023-05-20 16:16:36 +12:00
|
|
|
},
|
2026-04-15 12:48:39 -03:00
|
|
|
"@react-email/ui#build": {
|
2025-05-20 12:36:54 -03:00
|
|
|
"dependsOn": ["^build"],
|
|
|
|
|
"outputs": [".next/**", "!.next/cache/**"]
|
|
|
|
|
},
|
2026-04-16 12:15:03 -03:00
|
|
|
"playground#build": {
|
|
|
|
|
"dependsOn": ["^build", "^postbuild"],
|
|
|
|
|
"outputs": [".react-email/**", "!.react-email/.next/cache/**"]
|
|
|
|
|
},
|
2024-05-17 17:04:56 -03:00
|
|
|
"demo#build": {
|
2026-01-28 11:44:07 -03:00
|
|
|
"dependsOn": [
|
|
|
|
|
"^build",
|
|
|
|
|
"^postbuild",
|
2026-04-15 12:48:39 -03:00
|
|
|
"@react-email/ui#build",
|
2026-01-28 11:44:07 -03:00
|
|
|
"react-email#build"
|
|
|
|
|
],
|
2024-05-17 17:04:56 -03:00
|
|
|
"outputs": [".react-email/**", "!.react-email/.next/cache/**"]
|
|
|
|
|
},
|
|
|
|
|
"react-email#build": {
|
|
|
|
|
"dependsOn": ["^build"],
|
2024-08-22 14:47:21 -03:00
|
|
|
"outputs": ["dist/**"]
|
2024-05-17 17:04:56 -03:00
|
|
|
},
|
2023-05-20 16:16:36 +12:00
|
|
|
"lint": {},
|
2026-05-25 16:26:53 -03:00
|
|
|
"typecheck": {
|
|
|
|
|
"dependsOn": ["^build"]
|
|
|
|
|
},
|
2023-10-01 22:13:36 -03:00
|
|
|
"//#format": {},
|
|
|
|
|
"//#format:check": {},
|
2026-03-05 11:08:09 -03:00
|
|
|
"test:e2e": {
|
|
|
|
|
"dependsOn": ["^build"]
|
|
|
|
|
},
|
2024-10-31 07:20:30 -07:00
|
|
|
"test": {
|
2025-02-27 12:33:57 -03:00
|
|
|
"dependsOn": ["^build"]
|
2024-10-31 07:20:30 -07:00
|
|
|
},
|
2023-10-01 22:13:36 -03:00
|
|
|
"test:watch": {
|
|
|
|
|
"cache": false
|
|
|
|
|
},
|
|
|
|
|
"dev": {
|
2024-11-05 16:42:43 -03:00
|
|
|
"dependsOn": ["^build"],
|
2023-10-01 22:13:36 -03:00
|
|
|
"cache": false,
|
|
|
|
|
"persistent": true
|
|
|
|
|
}
|
2023-05-20 16:16:36 +12:00
|
|
|
}
|
|
|
|
|
}
|