2022-11-29 20:51:17 +00:00
|
|
|
{
|
2022-11-30 15:58:45 +00:00
|
|
|
"$schema": "https://turbo.build/schema.json",
|
2023-01-26 18:12:20 +00:00
|
|
|
"globalEnv": [
|
2023-01-31 14:22:03 +00:00
|
|
|
"NEXT_PUBLIC_API_BASE_URL",
|
2023-08-14 13:48:38 +00:00
|
|
|
"NEXT_PUBLIC_DEPLOY_URL",
|
2023-05-03 08:06:55 +00:00
|
|
|
"API_BASE_URL",
|
2023-02-08 15:14:35 +00:00
|
|
|
"NEXT_PUBLIC_SENTRY_DSN",
|
|
|
|
"SENTRY_AUTH_TOKEN",
|
2023-02-21 06:01:43 +00:00
|
|
|
"NEXT_PUBLIC_SENTRY_ENVIRONMENT",
|
2023-02-22 14:10:57 +00:00
|
|
|
"NEXT_PUBLIC_GITHUB_APP_NAME",
|
2023-02-21 06:01:43 +00:00
|
|
|
"NEXT_PUBLIC_ENABLE_SENTRY",
|
2023-03-15 05:30:42 +00:00
|
|
|
"NEXT_PUBLIC_ENABLE_OAUTH",
|
2023-03-29 06:54:19 +00:00
|
|
|
"NEXT_PUBLIC_TRACK_EVENTS",
|
2023-09-14 10:35:31 +00:00
|
|
|
"NEXT_PUBLIC_PLAUSIBLE_DOMAIN",
|
2023-04-14 09:47:35 +00:00
|
|
|
"NEXT_PUBLIC_CRISP_ID",
|
2023-04-14 11:21:24 +00:00
|
|
|
"NEXT_PUBLIC_ENABLE_SESSION_RECORDER",
|
2023-04-22 16:24:50 +00:00
|
|
|
"NEXT_PUBLIC_SESSION_RECORDER_KEY",
|
2023-05-03 08:06:55 +00:00
|
|
|
"NEXT_PUBLIC_EXTRA_IMAGE_DOMAINS",
|
2023-09-14 10:35:31 +00:00
|
|
|
"NEXT_PUBLIC_DEPLOY_WITH_NGINX",
|
2023-09-14 11:08:41 +00:00
|
|
|
"NEXT_PUBLIC_POSTHOG_KEY",
|
|
|
|
"NEXT_PUBLIC_POSTHOG_HOST",
|
2023-09-14 10:35:31 +00:00
|
|
|
"SLACK_OAUTH_URL",
|
|
|
|
"SLACK_CLIENT_ID",
|
|
|
|
"SLACK_CLIENT_SECRET",
|
|
|
|
"JITSU_TRACKER_ACCESS_KEY",
|
|
|
|
"JITSU_TRACKER_HOST",
|
|
|
|
"UNSPLASH_ACCESS_KEY"
|
2023-01-26 18:12:20 +00:00
|
|
|
],
|
2022-11-30 15:58:45 +00:00
|
|
|
"pipeline": {
|
|
|
|
"build": {
|
2023-10-13 06:35:49 +00:00
|
|
|
"dependsOn": [
|
|
|
|
"^build"
|
|
|
|
],
|
|
|
|
"outputs": [
|
|
|
|
".next/**",
|
|
|
|
"dist/**"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"web#develop": {
|
|
|
|
"cache": false,
|
|
|
|
"persistent": true,
|
|
|
|
"dependsOn": [
|
|
|
|
"@plane/lite-text-editor#build",
|
|
|
|
"@plane/rich-text-editor#build"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"space#develop": {
|
|
|
|
"cache": false,
|
|
|
|
"persistent": true,
|
|
|
|
"dependsOn": [
|
|
|
|
"@plane/lite-text-editor#build",
|
|
|
|
"@plane/rich-text-editor#build"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"web#build": {
|
|
|
|
"cache": true,
|
|
|
|
"dependsOn": [
|
|
|
|
"@plane/lite-text-editor#build",
|
|
|
|
"@plane/rich-text-editor#build"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"space#build": {
|
|
|
|
"cache": true,
|
|
|
|
"dependsOn": [
|
|
|
|
"@plane/lite-text-editor#build",
|
|
|
|
"@plane/rich-text-editor#build"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"@plane/lite-text-editor#build": {
|
|
|
|
"cache": true,
|
|
|
|
"dependsOn": [
|
|
|
|
"@plane/editor-core#build"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"@plane/rich-text-editor#build": {
|
|
|
|
"cache": true,
|
|
|
|
"dependsOn": [
|
|
|
|
"@plane/editor-core#build"
|
|
|
|
]
|
2022-11-30 15:58:45 +00:00
|
|
|
},
|
|
|
|
"test": {
|
2023-10-13 06:35:49 +00:00
|
|
|
"dependsOn": [
|
|
|
|
"^build"
|
|
|
|
],
|
2022-11-30 15:58:45 +00:00
|
|
|
"outputs": []
|
|
|
|
},
|
|
|
|
"lint": {
|
|
|
|
"outputs": []
|
|
|
|
},
|
|
|
|
"dev": {
|
|
|
|
"cache": false
|
|
|
|
},
|
2023-10-13 06:35:49 +00:00
|
|
|
"develop": {
|
|
|
|
"cache": false
|
|
|
|
},
|
2022-11-30 15:58:45 +00:00
|
|
|
"start": {
|
|
|
|
"cache": false
|
|
|
|
},
|
|
|
|
"clean": {
|
|
|
|
"cache": false
|
2022-11-29 20:51:17 +00:00
|
|
|
}
|
2022-11-30 15:58:45 +00:00
|
|
|
}
|
|
|
|
}
|