ente/turbo.json

31 lines
747 B
JSON
Raw Normal View History

2023-04-18 01:33:15 +00:00
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
2023-04-19 23:57:06 +00:00
"build": {
2023-11-01 07:43:28 +00:00
"dependsOn": ["^build"],
2023-11-17 03:47:56 +00:00
"outputs": [".next/**", "!.next/cache/**"]
},
"export": {
"dependsOn": ["build"],
"outputs": ["out/**"]
2023-04-29 16:00:49 +00:00
},
2023-04-29 16:49:28 +00:00
"lint": {},
2023-04-19 23:57:06 +00:00
"dev": {
"cache": false,
"persistent": true
2023-04-29 00:35:18 +00:00
},
"albums": {
"cache": false,
"persistent": true
2023-04-19 23:57:06 +00:00
}
2023-04-23 21:47:42 +00:00
},
"globalEnv": [
"NEXT_PUBLIC_ENTE_ENDPOINT",
"NEXT_PUBLIC_ENTE_PAYMENT_ENDPOINT",
"NEXT_PUBLIC_ENTE_ALBUM_ENDPOINT",
"NEXT_PUBLIC_ENTE_FAMILY_PORTAL_ENDPOINT",
"NODE_ENV",
2024-02-12 12:58:13 +00:00
"SENTRY_AUTH_TOKEN"
2023-04-23 21:47:42 +00:00
]
2023-04-29 16:49:28 +00:00
}