ente/turbo.json

58 lines
1.3 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": {
"outputs": [
".next/**",
"!.next/cache/**"
]
},
"export": {
"dependsOn": [
"^build"
],
"inputs": [
".next/**",
"!.next/cache/**"
]
},
2023-04-29 16:00:49 +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": {
"dependsOn": [
"^build"
]
},
"albums": {
"cache": false,
"persistent": true
},
"auth": {
"cache": false,
"persistent": true
2023-04-29 16:00:49 +00:00
},
"eslint": {
"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-19 23:57:06 +00:00
}