ente/turbo.json

43 lines
1.1 KiB
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-04-29 16:49:28 +00:00
"outputs": [".next/**", "!.next/cache/**"]
2023-04-19 23:57:06 +00:00
},
"export": {
2023-04-29 16:49:28 +00:00
"dependsOn": ["^build"],
"inputs": [".next/**", "!.next/cache/**"]
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
},
"start": {
2023-04-29 16:49:28 +00:00
"dependsOn": ["^build"]
2023-04-29 00:35:18 +00:00
},
"albums": {
"cache": false,
"persistent": true
},
"auth": {
"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",
"NEXT_PUBLIC_ENTE_AUTH_ENDPOINT",
"NEXT_PUBLIC_ENTE_WEB_ENDPOINT",
"NEXT_PUBLIC_IS_TEST_APP",
"NODE_ENV",
"SENTRY_RELEASE",
"SENTRY_AUTH_TOKEN",
"NEXT_PUBLIC_SENTRY_DSN",
"NEXT_PUBLIC_SENTRY_ENV"
]
2023-04-29 16:49:28 +00:00
}